class AwsPricing::DynamoDBPriceList
Constants
- DATA_TRANSFER_URL
- RESERVED_CAPACITY_URL
- STORAGE_URL
- THROUGHPUT_URL
Public Class Methods
new()
click to toggle source
Calls superclass method
AwsPricing::PriceList::new
# File lib/amazon-pricing/dynamo-db-price-list.rb 9 def initialize 10 super 11 end
Public Instance Methods
data_transfer_pricing()
click to toggle source
# File lib/amazon-pricing/dynamo-db-price-list.rb 25 def data_transfer_pricing 26 @data_transfer_pricing ||= PriceList.fetch_url(DATA_TRANSFER_URL) 27 end
reserved_capacity_pricing()
click to toggle source
# File lib/amazon-pricing/dynamo-db-price-list.rb 21 def reserved_capacity_pricing 22 @reserved_capacity_pricing ||= PriceList.fetch_url(RESERVED_CAPACITY_URL) 23 end
storage_pricing()
click to toggle source
# File lib/amazon-pricing/dynamo-db-price-list.rb 17 def storage_pricing 18 @storage_pricing ||= PriceList.fetch_url(STORAGE_URL) 19 end
throughput_pricing()
click to toggle source
# File lib/amazon-pricing/dynamo-db-price-list.rb 13 def throughput_pricing 14 @throughput_pricing ||= PriceList.fetch_url(THROUGHPUT_URL) 15 end