class AWSPricing::S3

Constants

S3_BASE_URL

Simple Storage Service pricing data

Public Class Methods

data_transfer() click to toggle source

Returns Hash of data transfer pricing information

# File lib/aws-pricing/products/s3.rb, line 13
def self.data_transfer
  Base.get(S3_BASE_URL + 'data-transfer')
end
requests() click to toggle source

Returns Hash of request pricing information

# File lib/aws-pricing/products/s3.rb, line 18
def self.requests
  Base.get(S3_BASE_URL + 'requests')
end
storage() click to toggle source

Returns Hash of storage pricing information

# File lib/aws-pricing/products/s3.rb, line 8
def self.storage
  Base.get(S3_BASE_URL + 'storage')
end