public class CopyObjectResult extends SSEResultBase implements ObjectExpirationResult, S3RequesterChargedResult, S3VersionResult, java.io.Serializable
Contains the data returned by Amazon S3 from the
AmazonS3.copyObject(CopyObjectRequest copyObjectRequest)
call.
This result may be ignored if not needed; otherwise, use this result
to access information about the new object created from the copyObject call.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
etag
The ETag value of the new object
|
private java.util.Date |
expirationTime
The time this object expires, or null if it has no expiration
|
private java.lang.String |
expirationTimeRuleId
The expiration rule for this object
|
private boolean |
isRequesterCharged
Indicate if the requester is charged for conducting this operation from
Requester Pays Buckets.
|
private java.util.Date |
lastModifiedDate
The last modified date for the new object
|
private java.lang.String |
versionId
The version ID of the new, copied object.
|
Constructor and Description |
---|
CopyObjectResult() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getETag()
Gets the ETag value for the new object that was created in the
associated
CopyObjectRequest . |
java.util.Date |
getExpirationTime()
Returns the expiration time for this object, or null if it doesn't expire.
|
java.lang.String |
getExpirationTimeRuleId()
Returns the
BucketLifecycleConfiguration rule ID for this
object's expiration, or null if it doesn't expire. |
java.util.Date |
getLastModifiedDate()
Gets the date the newly copied object was last modified.
|
java.lang.String |
getVersionId()
Gets the version ID of the newly copied object.
|
boolean |
isRequesterCharged()
Returns true if the user has enabled Requester Pays option when
conducting this operation from Requester Pays Bucket; else false.
|
void |
setETag(java.lang.String etag)
Sets the ETag value for the new object that was created from the
associated copy object request.
|
void |
setExpirationTime(java.util.Date expirationTime)
Sets the expiration time for the object.
|
void |
setExpirationTimeRuleId(java.lang.String expirationTimeRuleId)
Sets the
BucketLifecycleConfiguration rule ID for this object's
expiration |
void |
setLastModifiedDate(java.util.Date lastModifiedDate)
Sets the date the newly copied object was last modified.
|
void |
setRequesterCharged(boolean isRequesterCharged)
Used for conducting this operation from a Requester Pays Bucket.
|
void |
setVersionId(java.lang.String versionId)
Sets the version ID of the newly copied object.
|
getServerSideEncryption, getSSEAlgorithm, getSSECustomerAlgorithm, getSSECustomerKeyMd5, setSSEAlgorithm, setSSECustomerAlgorithm, setSSECustomerKeyMd5
private java.lang.String etag
private java.util.Date lastModifiedDate
private java.lang.String versionId
private java.util.Date expirationTime
private java.lang.String expirationTimeRuleId
private boolean isRequesterCharged
public java.lang.String getETag()
CopyObjectRequest
.setETag(String)
public void setETag(java.lang.String etag)
etag
- The ETag value for the new object.getETag()
public java.util.Date getLastModifiedDate()
setLastModifiedDate(Date)
public void setLastModifiedDate(java.util.Date lastModifiedDate)
lastModifiedDate
- The date the new, copied object was last modified.getLastModifiedDate()
public java.lang.String getVersionId()
S3VersionResult
getVersionId
in interface S3VersionResult
setVersionId(String)
,
CompleteMultipartUploadResult.getVersionId()
,
PutObjectResult.getVersionId()
public void setVersionId(java.lang.String versionId)
S3VersionResult
setVersionId
in interface S3VersionResult
versionId
- The version ID of the newly copied object.getVersionId()
,
CompleteMultipartUploadResult.getVersionId()
,
PutObjectResult.getVersionId()
public java.util.Date getExpirationTime()
getExpirationTime
in interface ObjectExpirationResult
public void setExpirationTime(java.util.Date expirationTime)
setExpirationTime
in interface ObjectExpirationResult
expirationTime
- The expiration time for the object.public java.lang.String getExpirationTimeRuleId()
BucketLifecycleConfiguration
rule ID for this
object's expiration, or null if it doesn't expire.getExpirationTimeRuleId
in interface ObjectExpirationResult
BucketLifecycleConfiguration.Rule.getId()
public void setExpirationTimeRuleId(java.lang.String expirationTimeRuleId)
BucketLifecycleConfiguration
rule ID for this object's
expirationsetExpirationTimeRuleId
in interface ObjectExpirationResult
expirationTimeRuleId
- The rule ID for this object's expirationpublic boolean isRequesterCharged()
S3RequesterChargedResult
If a bucket is enabled for Requester Pays, then any attempt of operation from it without Requester Pays enabled will result in a 403 error and the bucket owner will be charged for the request.
Enabling Requester Pays disables the ability to have anonymous access to this bucket
isRequesterCharged
in interface S3RequesterChargedResult
public void setRequesterCharged(boolean isRequesterCharged)
S3RequesterChargedResult
If a bucket is enabled for Requester Pays, then any attempt of operation from it without Requester Pays enabled will result in a 403 error and the bucket owner will be charged for the request.
setRequesterCharged
in interface S3RequesterChargedResult
isRequesterCharged
- Indicates requester is charged for this operation.