Class: Aws::S3::Types::CopyObjectResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::CopyObjectResult
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Container for all response elements.
Instance Attribute Summary collapse
-
#etag ⇒ String
Returns the ETag of the new object.
-
#last_modified ⇒ Time
Returns the date that the object was last modified.
Instance Attribute Details
#etag ⇒ String
Returns the ETag of the new object. The ETag reflects only changes to the contents of an object, not its metadata. The source and destination ETag is identical for a successfully copied object.
1452 1453 1454 1455 1456 |
# File 'lib/aws-sdk-s3/types.rb', line 1452 class CopyObjectResult < Struct.new( :etag, :last_modified) include Aws::Structure end |
#last_modified ⇒ Time
Returns the date that the object was last modified.
1452 1453 1454 1455 1456 |
# File 'lib/aws-sdk-s3/types.rb', line 1452 class CopyObjectResult < Struct.new( :etag, :last_modified) include Aws::Structure end |