Class: Aws::S3::Types::CompletedPart

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 CompletedPart data as a hash:

{
  etag: "ETag",
  part_number: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#etagString

Entity tag returned when the part was uploaded.

Returns:

  • (String)


841
842
843
844
845
# File 'lib/aws-sdk-s3/types.rb', line 841

class CompletedPart < Struct.new(
  :etag,
  :part_number)
  include Aws::Structure
end

#part_numberInteger

Part number that identifies the part. This is a positive integer between 1 and 10,000.

Returns:

  • (Integer)


841
842
843
844
845
# File 'lib/aws-sdk-s3/types.rb', line 841

class CompletedPart < Struct.new(
  :etag,
  :part_number)
  include Aws::Structure
end