Class: AWS::S3::MultipartUploadCollection
- Inherits:
-
Object
- Object
- AWS::S3::MultipartUploadCollection
- Includes:
- Core::Model, PrefixAndDelimiterCollection, Enumerable
- Defined in:
- lib/aws/s3/multipart_upload_collection.rb
Overview
Represents the uploads in progress for a bucket.
Instance Attribute Summary collapse
-
#bucket ⇒ Bucket
readonly
The bucket in which the uploads are taking place.
Attributes included from PrefixedCollection
Attributes included from Core::Model
Instance Method Summary collapse
-
#initialize(bucket, opts = {}) ⇒ MultipartUploadCollection
constructor
A new instance of MultipartUploadCollection.
Methods included from PrefixAndDelimiterCollection
Methods included from PrefixedCollection
Methods included from Core::Collection::Limitable
Methods included from Core::Collection
#each, #each_batch, #enum, #first, #in_groups_of, #page
Methods included from Core::Model
#client, #config_prefix, #inspect
Constructor Details
#initialize(bucket, opts = {}) ⇒ MultipartUploadCollection
Returns a new instance of MultipartUploadCollection.
41 42 43 44 |
# File 'lib/aws/s3/multipart_upload_collection.rb', line 41 def initialize(bucket, opts = {}) @bucket = bucket super end |
Instance Attribute Details
#bucket ⇒ Bucket (readonly)
Returns The bucket in which the uploads are taking place.
38 39 40 |
# File 'lib/aws/s3/multipart_upload_collection.rb', line 38 def bucket @bucket end |