class AWS::Glacier

Attributes

account_id[RW]

@return [String]

Public Instance Methods

intialize(options = {}) click to toggle source

@option options :#account_id ('-')

# File lib/aws/glacier.rb, line 35
def intialize options = {}
  @account_id = options[:account_id] || '-'
  super
end
vaults() click to toggle source

@return [VaultCollection] Returns a collection for working with

vaults that belong to this account.
# File lib/aws/glacier.rb, line 45
def vaults
  VaultCollection.new(:config => config, :account_id => account_id)
end