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.
Constant Summary collapse
- SENSITIVE =
[]
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.
1662 1663 1664 1665 1666 1667 |
# File 'lib/aws-sdk-s3/types.rb', line 1662 class CopyObjectResult < Struct.new( :etag, :last_modified) SENSITIVE = [] include Aws::Structure end |
#last_modified ⇒ Time
Returns the date that the object was last modified.
1662 1663 1664 1665 1666 1667 |
# File 'lib/aws-sdk-s3/types.rb', line 1662 class CopyObjectResult < Struct.new( :etag, :last_modified) SENSITIVE = [] include Aws::Structure end |