Class: Aws::S3::Types::CompletedPart
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::CompletedPart
- 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
-
#etag ⇒ String
Entity tag returned when the part was uploaded.
-
#part_number ⇒ Integer
Part number that identifies the part.
Instance Attribute Details
#etag ⇒ String
Entity tag returned when the part was uploaded.
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_number ⇒ Integer
Part number that identifies the part. This is a positive integer between 1 and 10,000.
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 |