Class: ZAWS::S3

Inherits:
Object
  • Object
show all
Defined in:
lib/zaws/services/s3.rb

Instance Method Summary collapse

Constructor Details

#initialize(shellout, aws) ⇒ S3

Returns a new instance of S3.



4
5
6
7
# File 'lib/zaws/services/s3.rb', line 4

def initialize(shellout,aws)
  @shellout=shellout
  @aws=aws
end

Instance Method Details

#bucketObject



9
10
11
12
# File 'lib/zaws/services/s3.rb', line 9

def bucket()
  @_bucket ||= (ZAWS::Services::S3::Bucket.new(@shellout, @aws))
  return @_bucket
end