Class: Aws::S3::Types::Part
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::Part
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Instance Attribute Summary collapse
-
#etag ⇒ String
Entity tag returned when the part was uploaded.
-
#last_modified ⇒ Time
Date and time at which the part was uploaded.
-
#part_number ⇒ Integer
Part number identifying the part.
-
#size ⇒ Integer
Size in bytes of the uploaded part data.
Instance Attribute Details
#etag ⇒ String
Entity tag returned when the part was uploaded.
6319 6320 6321 6322 6323 6324 6325 |
# File 'lib/aws-sdk-s3/types.rb', line 6319 class Part < Struct.new( :part_number, :last_modified, :etag, :size) include Aws::Structure end |
#last_modified ⇒ Time
Date and time at which the part was uploaded.
6319 6320 6321 6322 6323 6324 6325 |
# File 'lib/aws-sdk-s3/types.rb', line 6319 class Part < Struct.new( :part_number, :last_modified, :etag, :size) include Aws::Structure end |