public class CopyObjectRequest extends AmazonWebServiceRequest implements SSEAwsKeyManagementParamsProvider, java.io.Serializable, S3AccelerateUnsupported
Provides options for copying an Amazon S3 object from a source location to a new destination.
All CopyObjectRequests
must specify a source bucket and key,
along with a destination bucket and key. Beyond that, requests also specify:
CannedAccessControlList
for the new object,Constructor and Description |
---|
CopyObjectRequest(java.lang.String sourceBucketName,
java.lang.String sourceKey,
java.lang.String destinationBucketName,
java.lang.String destinationKey)
Constructs a new
com.amazonaws.services.s3.model with only basic
options. |
CopyObjectRequest(java.lang.String sourceBucketName,
java.lang.String sourceKey,
java.lang.String sourceVersionId,
java.lang.String destinationBucketName,
java.lang.String destinationKey)
Constructs a new
CopyObjectRequest with basic options, providing
an S3 version ID identifying the specific version of the source object to
copy. |
Modifier and Type | Method and Description |
---|---|
AccessControlList |
getAccessControlList()
Returns the optional access control list for the new object.
|
CannedAccessControlList |
getCannedAccessControlList()
Gets the canned ACL to use for the new, copied object.
|
java.lang.String |
getDestinationBucketName()
Gets the destination bucket name which will contain the new, copied
object.
|
java.lang.String |
getDestinationKey()
Gets the destination bucket key under which the new, copied object will
be stored.
|
SSECustomerKey |
getDestinationSSECustomerKey()
Returns the optional customer-provided server-side encryption key to use
to encrypt the destination object being copied.
|
java.util.List<java.lang.String> |
getMatchingETagConstraints()
Gets the optional list of ETag constraints that, when present,
must include a match for the source object's current ETag in order
for the copy object request to be executed.
|
java.util.Date |
getModifiedSinceConstraint()
Gets the optional modified constraint that restricts this request to
executing only if the source object has been modified after the
specified date.
|
ObjectMetadata |
getNewObjectMetadata()
Gets the optional object metadata to set for the new, copied object.
|
ObjectTagging |
getNewObjectTagging() |
java.util.List<java.lang.String> |
getNonmatchingETagConstraints()
Gets the optional list of ETag constraints that, when present, must
not include a match for the source object's current ETag in order for
the copy object request to be executed.
|
java.lang.String |
getRedirectLocation()
Gets the optional redirect location for the newly copied object.
|
java.lang.String |
getSourceBucketName()
Gets the name of the bucket containing the source object to be copied.
|
java.lang.String |
getSourceKey()
Gets the source bucket key under which the source object to be copied is
stored.
|
SSECustomerKey |
getSourceSSECustomerKey()
Returns the optional customer-provided server-side encryption key to use
to decrypt the source object being copied.
|
java.lang.String |
getSourceVersionId()
Gets the version ID specifying which version of the source object to
copy.
|
SSEAwsKeyManagementParams |
getSSEAwsKeyManagementParams()
Returns the AWS Key Management System parameters used to encrypt the
object on server side.
|
java.lang.String |
getStorageClass()
Gets the optional Amazon S3 storage class to use when storing the newly
copied object.
|
java.util.Date |
getUnmodifiedSinceConstraint()
Gets the optional unmodified constraint that restricts this request to
executing only if the source object has not been modified after
the specified date.
|
boolean |
isRequesterPays()
Returns true if the user has enabled Requester Pays option when
conducting this operation from Requester Pays Bucket; else false.
|
void |
setAccessControlList(AccessControlList accessControlList)
Sets the optional access control list for the new object.
|
void |
setCannedAccessControlList(CannedAccessControlList cannedACL)
Sets the canned ACL to use for the newly copied object.
|
void |
setDestinationBucketName(java.lang.String destinationBucketName)
Sets the destination bucket name which will contain the new, copied
object.
|
void |
setDestinationKey(java.lang.String destinationKey)
Sets the destination bucket key under which the new, copied object will
be stored.
|
void |
setDestinationSSECustomerKey(SSECustomerKey sseKey)
Sets the optional customer-provided server-side encryption key to use to
encrypt the destination object being copied.
|
void |
setMatchingETagConstraints(java.util.List<java.lang.String> eTagList)
Sets the optional list of ETag constraints that, when present,
must include a match for the source object's current ETag in order
for the copy object request to be executed.
|
void |
setModifiedSinceConstraint(java.util.Date date)
Sets the optional modified constraint that restricts this request to
executing only if the source object has been modified after the
specified date.
|
void |
setNewObjectMetadata(ObjectMetadata newObjectMetadata)
Sets the object metadata to use for the new, copied object.
|
void |
setNewObjectTagging(ObjectTagging newObjectTagging)
set the tagging for the new object.
|
void |
setNonmatchingETagConstraints(java.util.List<java.lang.String> eTagList)
Sets the optional list of ETag constraints that, when present, must
not include a match for the source object's current ETag in order for
the copy object request to be executed.
|
void |
setRedirectLocation(java.lang.String redirectLocation)
Sets the optional redirect location for the newly copied object.
|
void |
setRequesterPays(boolean isRequesterPays)
Used for conducting this operation from a Requester Pays Bucket.
|
void |
setSourceBucketName(java.lang.String sourceBucketName)
Sets the name of the bucket containing the source object to be copied.
|
void |
setSourceKey(java.lang.String sourceKey)
Sets the source bucket key under which the source object to be copied is
stored.
|
void |
setSourceSSECustomerKey(SSECustomerKey sseKey)
Sets the optional customer-provided server-side encryption key to use to
decrypt the source object being copied.
|
void |
setSourceVersionId(java.lang.String sourceVersionId)
Sets the optional version ID specifying which version of the source
object to copy.
|
void |
setSSEAwsKeyManagementParams(SSEAwsKeyManagementParams params)
Sets the AWS Key Management System parameters used to encrypt the object
on server side.
|
void |
setStorageClass(StorageClass storageClass)
Sets the optional Amazon S3 storage class to use when storing the newly
copied object.
|
void |
setStorageClass(java.lang.String storageClass)
Sets the optional Amazon S3 storage class to use when storing the newly
copied object.
|
void |
setUnmodifiedSinceConstraint(java.util.Date date)
Sets the optional unmodified constraint that restricts this request to
executing only if the source object has not been modified after
the specified date.
|
CopyObjectRequest |
withAccessControlList(AccessControlList accessControlList)
Sets the optional access control list for the new object.
|
CopyObjectRequest |
withCannedAccessControlList(CannedAccessControlList cannedACL)
Sets the canned ACL to use for the newly copied object, and returns this
CopyObjectRequest , enabling additional method calls to be
chained together. |
CopyObjectRequest |
withDestinationBucketName(java.lang.String destinationBucketName)
Sets the name of the destination bucket which will contain the new,
copied object and returns this object, enabling additional method calls
to be chained together.
|
CopyObjectRequest |
withDestinationKey(java.lang.String destinationKey)
Sets the destination bucket key under which the new, copied object will
be stored and returns this object, enabling additional method calls can
be chained together.
|
CopyObjectRequest |
withDestinationSSECustomerKey(SSECustomerKey sseKey)
Sets the optional customer-provided server-side encryption key to use to
encrypt the destination object being copied, and returns the updated
request object so that additional method calls can be chained together.
|
CopyObjectRequest |
withMatchingETagConstraint(java.lang.String eTag)
Adds a single ETag constraint to this request and returns this object,
enabling additional method calls to be chained together.
|
CopyObjectRequest |
withModifiedSinceConstraint(java.util.Date date)
Sets the optional modified constraint that restricts this request to
executing only if the source object has been modified after the
specified date.
|
CopyObjectRequest |
withNewObjectMetadata(ObjectMetadata newObjectMetadata)
Sets the object metadata to use for the new, copied object and returns
this object, enabling additional method calls to be chained together.
|
CopyObjectRequest |
withNewObjectTagging(ObjectTagging newObjectTagging)
set the tagging for the new object.
|
CopyObjectRequest |
withNonmatchingETagConstraint(java.lang.String eTag)
Adds a single ETag constraint to this request and returns this object,
enabling additional method calls to be chained together.
|
CopyObjectRequest |
withRedirectLocation(java.lang.String redirectLocation)
Sets the optional redirect location for the newly copied object.Returns
this
CopyObjectRequest , enabling additional method calls to be
chained together. |
CopyObjectRequest |
withRequesterPays(boolean isRequesterPays)
Used for conducting this operation from a Requester Pays Bucket.
|
CopyObjectRequest |
withSourceBucketName(java.lang.String sourceBucketName)
Sets the name of the bucket containing the source object to be copied,
and returns this object, enabling additional method calls to be chained
together.
|
CopyObjectRequest |
withSourceKey(java.lang.String sourceKey)
Sets the key in the source bucket under which the source object to be
copied is stored and returns this object, enabling additional method
calls to be chained together.
|
CopyObjectRequest |
withSourceSSECustomerKey(SSECustomerKey sseKey)
Sets the optional customer-provided server-side encryption key to use to
decrypt the source object being copied, and returns the updated request
object so that additional method calls can be chained together.
|
CopyObjectRequest |
withSourceVersionId(java.lang.String sourceVersionId)
Sets the optional version ID specifying which version of the source
object to copy and returns this object, enabling additional method calls
to be chained together.
|
CopyObjectRequest |
withSSEAwsKeyManagementParams(SSEAwsKeyManagementParams sseAwsKeyManagementParams)
Sets the AWS Key Management System parameters used to encrypt the object
on server side.
|
CopyObjectRequest |
withStorageClass(StorageClass storageClass)
Sets the optional Amazon S3 storage class to use when storing the newly
copied object and returns this CopyObjectRequest, enabling additional
method calls to be chained together.
|
CopyObjectRequest |
withStorageClass(java.lang.String storageClass)
Sets the optional Amazon S3 storage class to use when storing the newly
copied object and returns this
CopyObjectRequest , enabling
additional method calls to be chained together. |
CopyObjectRequest |
withUnmodifiedSinceConstraint(java.util.Date date)
Sets the optional unmodified constraint that restricts this request to
executing only if the source object has not been modified after
the specified date.
|
clone, getCloneRoot, getCloneSource, getGeneralProgressListener, getRequestClientOptions, getRequestCredentials, getRequestMetricCollector, setGeneralProgressListener, setRequestCredentials, setRequestMetricCollector, withGeneralProgressListener, withRequestMetricCollector
public CopyObjectRequest(java.lang.String sourceBucketName, java.lang.String sourceKey, java.lang.String destinationBucketName, java.lang.String destinationKey)
Constructs a new
com.amazonaws.services.s3.model
with only basic
options.
sourceBucketName
- The name of the S3 bucket containing the object
to copy.sourceKey
- The source bucket key under which the object to copy is
stored.destinationBucketName
- The name of the S3 bucket to which the new
object will be copied.destinationKey
- The destination bucket key under which the new
object will be copied.CopyObjectRequest(String, String, String, String,
String)
public CopyObjectRequest(java.lang.String sourceBucketName, java.lang.String sourceKey, java.lang.String sourceVersionId, java.lang.String destinationBucketName, java.lang.String destinationKey)
Constructs a new CopyObjectRequest
with basic options, providing
an S3 version ID identifying the specific version of the source object to
copy.
sourceBucketName
- The name of the S3 bucket containing the object
to copy.sourceKey
- The key in the source bucket under which the object to
copy is stored.sourceVersionId
- The S3 version ID which uniquely identifies a
specific version of the source object to copy.destinationBucketName
- The name of the S3 bucket in which the new
object will be copied.destinationKey
- The key in the destination bucket under which the
new object will be copied.CopyObjectRequest(String sourceBucketName, String
sourceKey, String destinationBucketName, String destinationKey)
public java.lang.String getSourceBucketName()
setSourceBucketName(String sourceBucketName)
public void setSourceBucketName(java.lang.String sourceBucketName)
sourceBucketName
- The name of the bucket containing the source
object to be copied.getSourceBucketName()
public CopyObjectRequest withSourceBucketName(java.lang.String sourceBucketName)
sourceBucketName
- The name of the bucket containing the source
object to be copied.CopyObjectRequest
instance, enabling additional
method calls to be chained together.public java.lang.String getSourceKey()
setSourceKey(String sourceKey)
public void setSourceKey(java.lang.String sourceKey)
sourceKey
- The source bucket key under which the source object to
be copied is stored.setSourceKey(String sourceKey)
public CopyObjectRequest withSourceKey(java.lang.String sourceKey)
sourceKey
- The key in the source bucket under which the source
object to be copied is stored.CopyObjectRequest
instance, enabling additional
method calls to be chained together.public java.lang.String getSourceVersionId()
Gets the version ID specifying which version of the source object to copy. If not specified, the most recent version of the source object will be copied.
Objects created before enabling versioning or when versioning is
suspended are given the default null
version ID (see
Constants.NULL_VERSION_ID
). Note that the null
version ID is a valid version ID and is not the same as not having a
version ID.
For more information about enabling versioning for a bucket, see
AmazonS3.setBucketVersioningConfiguration(SetBucketVersioningConfigurationRequest)
.
Constants.NULL_VERSION_ID
,
setSourceVersionId(String sourceVersionId)
public void setSourceVersionId(java.lang.String sourceVersionId)
Sets the optional version ID specifying which version of the source object to copy. If not specified, the most recent version of the source object will be copied.
Objects created before enabling versioning or when versioning is
suspended are given the default null
version ID (see
Constants.NULL_VERSION_ID
). Note that the null
version ID is a valid version ID and is not the same as not having a
version ID.
For more information about enabling versioning for a bucket, see
AmazonS3.setBucketVersioningConfiguration(SetBucketVersioningConfigurationRequest)
.
sourceVersionId
- The optional version ID specifying which version
of the source object to copy.public CopyObjectRequest withSourceVersionId(java.lang.String sourceVersionId)
Sets the optional version ID specifying which version of the source object to copy and returns this object, enabling additional method calls to be chained together. If not specified, the most recent version of the source object will be copied.
Objects created before enabling versioning or when versioning is
suspended are given the default null
version ID (see
Constants.NULL_VERSION_ID
). Note that the null
version ID is a valid version ID and is not the same as not having a
version ID.
For more information about enabling versioning for a bucket, see
AmazonS3.setBucketVersioningConfiguration(SetBucketVersioningConfigurationRequest)
.
sourceVersionId
- The optional version ID specifying which version
of the source object to copy.CopyObjectRequest
, enabling additional method
calls to be chained together.public java.lang.String getDestinationBucketName()
setDestinationBucketName(String
destinationBucketName)
public void setDestinationBucketName(java.lang.String destinationBucketName)
destinationBucketName
- The name of the destination bucket which
will contain the new, copied object.getDestinationBucketName()
public CopyObjectRequest withDestinationBucketName(java.lang.String destinationBucketName)
destinationBucketName
- The name of the destination bucket which
will contain the new, copied object.CopyObjectRequest
, enabling additional method
calls to be chained together.public java.lang.String getDestinationKey()
setDestinationKey(String destinationKey)
public void setDestinationKey(java.lang.String destinationKey)
destinationKey
- The destination bucket key under which the new,
copied object will be stored.getDestinationKey()
public CopyObjectRequest withDestinationKey(java.lang.String destinationKey)
destinationKey
- The destination bucket key under which the new,
copied object will be stored.CopyObjectRequest
, enabling additional method
calls to be chained together.public java.lang.String getStorageClass()
Gets the optional Amazon S3 storage class to use when storing the newly copied object. If not specified, the default standard storage class is used.
For more information on available Amazon S3 storage classes, see the
StorageClass
enumeration.
setStorageClass(String)
,
setStorageClass(StorageClass)
public void setStorageClass(java.lang.String storageClass)
Sets the optional Amazon S3 storage class to use when storing the newly copied object. If not specified, the default standard storage class is used.
For more information on Amazon S3 storage classes and available values,
see the StorageClass
enumeration.
getStorageClass()
,
setStorageClass(StorageClass)
public CopyObjectRequest withStorageClass(java.lang.String storageClass)
Sets the optional Amazon S3 storage class to use when storing the newly
copied object and returns this CopyObjectRequest
, enabling
additional method calls to be chained together. If not specified, the
default standard storage class is used.
For more information on Amazon S3 storage classes and available values,
see the StorageClass
enumeration.
CopyObjectRequest
, enabling additional method
calls to be chained together.public void setStorageClass(StorageClass storageClass)
Sets the optional Amazon S3 storage class to use when storing the newly copied object. If not specified, the default standard storage class is used.
For more information on Amazon S3 storage classes and available values,
see the StorageClass
enumeration.
getStorageClass()
,
setStorageClass(String)
public CopyObjectRequest withStorageClass(StorageClass storageClass)
Sets the optional Amazon S3 storage class to use when storing the newly copied object and returns this CopyObjectRequest, enabling additional method calls to be chained together. If not specified, the default standard storage class is used.
For more information on Amazon S3 storage classes and available values,
see the StorageClass
enumeration.
CopyObjectRequest
, enabling additional method
calls to be chained together.public CannedAccessControlList getCannedAccessControlList()
CannedAccessControlList.Private
canned ACL for all copied
objects.null
if no canned ACL has been specified.public void setCannedAccessControlList(CannedAccessControlList cannedACL)
CannedAccessControlList.Private
canned ACL for all copied
objects.cannedACL
- The canned ACL to set for the newly copied object.public CopyObjectRequest withCannedAccessControlList(CannedAccessControlList cannedACL)
CopyObjectRequest
, enabling additional method calls to be
chained together.cannedACL
- The canned ACL to set for the newly copied object.CopyObjectRequest
, enabling additional method
calls to be chained together.public AccessControlList getAccessControlList()
public void setAccessControlList(AccessControlList accessControlList)
accessControlList
- The access control list for the new object.public CopyObjectRequest withAccessControlList(AccessControlList accessControlList)
CopyObjectRequest
,
enabling additional method calls to be chained together.accessControlList
- The access control list for the new object.public ObjectMetadata getNewObjectMetadata()
null
if no object metadata has been specified.setNewObjectMetadata(ObjectMetadata
newObjectMetadata)
public void setNewObjectMetadata(ObjectMetadata newObjectMetadata)
newObjectMetadata
- The object metadata to use for the newly copied
object.getNewObjectMetadata()
public CopyObjectRequest withNewObjectMetadata(ObjectMetadata newObjectMetadata)
newObjectMetadata
- The object metadata to use for the newly copied
object.CopyObjectRequest
, enabling additional method
calls to be chained together.public java.util.List<java.lang.String> getMatchingETagConstraints()
Gets the optional list of ETag constraints that, when present, must include a match for the source object's current ETag in order for the copy object request to be executed. Only one ETag in the list needs to match for the request to be executed by Amazon S3.
Matching ETag constraints may be used with the unmodified since constraint, but not with any other type of constraint.
public void setMatchingETagConstraints(java.util.List<java.lang.String> eTagList)
Sets the optional list of ETag constraints that, when present, must include a match for the source object's current ETag in order for the copy object request to be executed. If none of the specified ETags match the source object's current ETag, the copy object operation will be aborted. Only one ETag in the list needs to match for the request to be executed by Amazon S3.
Matching ETag constraints may be used with the unmodified since constraint, but not with any other type of constraint.
eTagList
- The optional list of ETag constraints that must include a
match for the source object's current ETag in order for this
request to be executed.public CopyObjectRequest withMatchingETagConstraint(java.lang.String eTag)
Adds a single ETag constraint to this request and returns this object, enabling additional method calls to be chained together. Multiple ETag constraints can be added to a request, but one must match the source object's current ETag in order for the copy object request to be executed. If none of the ETag constraints added to this request match the source object's current ETag, the copy object operation will be aborted.
Matching ETag constraints may be used with the unmodified since constraint, but not with any other type of constraint.
eTag
- The matching ETag constraint to add to this request.CopyObjectRequest
, enabling additional method
calls to be chained together.public java.util.List<java.lang.String> getNonmatchingETagConstraints()
Gets the optional list of ETag constraints that, when present, must not include a match for the source object's current ETag in order for the copy object request to be executed. If any entry in the non-matching ETag constraint list matches the source object's current ETag, this copy request will not be executed by Amazon S3.
Non-matching ETag constraints may be used with the modified since constraint, but not with any other type of constraint.
public void setNonmatchingETagConstraints(java.util.List<java.lang.String> eTagList)
Sets the optional list of ETag constraints that, when present, must not include a match for the source object's current ETag in order for the copy object request to be executed. If any entry in the non-matching ETag constraint list matches the source object's current ETag, this copy request will not be executed by Amazon S3.
Non-matching ETag constraints may be used with the modified since constraint, but not with any other type of constraint.
eTagList
- The list of ETag constraints that, when present, must
not include a match for the source object's current ETag
in order for this request to be executed.public CopyObjectRequest withNonmatchingETagConstraint(java.lang.String eTag)
Adds a single ETag constraint to this request and returns this object, enabling additional method calls to be chained together. Multiple ETag constraints can be added to a request, but all ETag constraints must not match the source object's current ETag in order for the copy object request to be executed. If any entry in the non-matching ETag constraint list matches the source object's current ETag, this copy request will not be executed by Amazon S3.
Non-matching ETag constraints may be used with the modified since constraint, but not with any other type of constraint.
eTag
- The non-matching ETag constraint to add to this request.CopyObjectRequest
, enabling additional method
calls to be chained together.public java.util.Date getUnmodifiedSinceConstraint()
Gets the optional unmodified constraint that restricts this request to executing only if the source object has not been modified after the specified date.
The unmodified since constraint may be used with matching ETag constraints, but not with any other type of constraint.
public void setUnmodifiedSinceConstraint(java.util.Date date)
Sets the optional unmodified constraint that restricts this request to executing only if the source object has not been modified after the specified date.
The unmodified constraint may be used with matching ETag constraints, but not with any other type of constraint.
Note that Amazon S3 will ignore any dates occurring in the future.
date
- The unmodified constraint that restricts this request to
executing only if the source object has not been
modified after this date.public CopyObjectRequest withUnmodifiedSinceConstraint(java.util.Date date)
Sets the optional unmodified constraint that restricts this request to executing only if the source object has not been modified after the specified date. Returns this object, enabling additional method calls to be chained together.
The unmodified constraint may be used with matching ETag constraints, but not with any other type of constraint.
Note that Amazon S3 will ignore any dates occurring in the future.
date
- The unmodified constraint that restricts this request to
executing only if the source object has not been
modified after this date.CopyObjectRequest
, enabling additional method
calls to be chained together.public java.util.Date getModifiedSinceConstraint()
Gets the optional modified constraint that restricts this request to executing only if the source object has been modified after the specified date.
The modified constraint may be used with non-matching ETag constraints, but not with any other type of constraint.
public void setModifiedSinceConstraint(java.util.Date date)
Sets the optional modified constraint that restricts this request to executing only if the source object has been modified after the specified date.
The modified constraint may be used with non-matching ETag constraints, but not with any other type of constraint.
Note that Amazon S3 will ignore any dates occurring in the future.
date
- The modified constraint that restricts this request to
executing only if the source object has been modified
after the specified date.public CopyObjectRequest withModifiedSinceConstraint(java.util.Date date)
Sets the optional modified constraint that restricts this request to executing only if the source object has been modified after the specified date. Returns this object, enabling additional method calls to be chained together.
The modified constraint may be used with non-matching ETag constraints, but not with any other type of constraint.
Note that Amazon S3 will ignore any dates occurring in the future.
date
- The modified constraint that restricts this request to
executing only if the source object has been modified
after the specified date.CopyObjectRequest
, enabling additional method
calls to be chained together.public void setRedirectLocation(java.lang.String redirectLocation)
redirectLocation
- The redirect location for the newly copied
object.public java.lang.String getRedirectLocation()
public CopyObjectRequest withRedirectLocation(java.lang.String redirectLocation)
CopyObjectRequest
, enabling additional method calls to be
chained together.redirectLocation
- The redirect location for the newly copied
object.public SSECustomerKey getSourceSSECustomerKey()
public void setSourceSSECustomerKey(SSECustomerKey sseKey)
sseKey
- The optional customer-provided server-side encryption key
to use to decrypt the source object being copied.public CopyObjectRequest withSourceSSECustomerKey(SSECustomerKey sseKey)
sseKey
- The optional customer-provided server-side encryption key
to use to decrypt the source object being copied.public SSECustomerKey getDestinationSSECustomerKey()
public void setDestinationSSECustomerKey(SSECustomerKey sseKey)
sseKey
- The optional customer-provided server-side encryption key
to use to encrypt the destination object being copied.public CopyObjectRequest withDestinationSSECustomerKey(SSECustomerKey sseKey)
sseKey
- The optional customer-provided server-side encryption key
to use to encrypt the destination object being copied.public SSEAwsKeyManagementParams getSSEAwsKeyManagementParams()
getSSEAwsKeyManagementParams
in interface SSEAwsKeyManagementParamsProvider
public void setSSEAwsKeyManagementParams(SSEAwsKeyManagementParams params)
public CopyObjectRequest withSSEAwsKeyManagementParams(SSEAwsKeyManagementParams sseAwsKeyManagementParams)
public boolean isRequesterPays()
If a bucket is enabled for Requester Pays, then any attempt to upload or download an object 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
public void setRequesterPays(boolean isRequesterPays)
If a bucket is enabled for Requester Pays, then any attempt to upload or download an object 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.
isRequesterPays
- Enable Requester Pays option for the operation.public CopyObjectRequest withRequesterPays(boolean isRequesterPays)
If a bucket is enabled for Requester Pays, then any attempt to upload or download an object 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.
isRequesterPays
- Enable Requester Pays option for the operation.public ObjectTagging getNewObjectTagging()
public void setNewObjectTagging(ObjectTagging newObjectTagging)
newObjectTagging
- the tagging for the new object.public CopyObjectRequest withNewObjectTagging(ObjectTagging newObjectTagging)
newObjectTagging
- the tagging for the new object.Copyright © 2018 Amazon Web Services, Inc. All Rights Reserved.