Class AWS::S3::UploadedPart
In: lib/aws/s3/uploaded_part.rb
Parent: Object

Represents a part of a multipart upload that has been uploaded to S3.

@example Get the total size of the uploaded parts

 upload.parts.inject(0) { |sum, part| sum + part.size }

Methods

==   eql?   etag   last_modified   new   size  

Included Modules

Core::Model

Attributes

part_number  [R]  @return [Integer] The part number.
upload  [R]  @return [MultipartUpload] The upload to which this belongs.

Public Class methods

Public Instance methods

eql?(other)

Alias for #==

@return [String] The ETag of the part.

@return [DateTime] The time at which the part was last

  modified.

@return [Integer] The size of the part as it currently

  exists in S3.

[Validate]