Class: Aws::S3::Types::CompletedMultipartUpload

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/types.rb

Overview

Note:

When making an API call, you may pass CompletedMultipartUpload data as a hash:

{
  parts: [
    {
      etag: "ETag",
      part_number: 1,
    },
  ],
}

The container for the completed multipart upload details.

Instance Attribute Summary collapse

Instance Attribute Details

#partsArray<Types::CompletedPart>

Array of CompletedPart data types.

Returns:



1004
1005
1006
1007
# File 'lib/aws-sdk-s3/types.rb', line 1004

class CompletedMultipartUpload < Struct.new(
  :parts)
  include Aws::Structure
end