Uses of Class
org.jclouds.s3.options.CopyObjectOptions
-
Packages that use CopyObjectOptions Package Description org.jclouds.s3 This package contains an Amazon S3 client implemented byHttpCommandExecutorService
commands.org.jclouds.s3.options This package contains request options for S3 REST commands. -
-
Uses of CopyObjectOptions in org.jclouds.s3
Methods in org.jclouds.s3 with parameters of type CopyObjectOptions Modifier and Type Method Description ObjectMetadata
S3Client. copyObject(String sourceBucket, String sourceObject, String destinationBucket, String destinationObject, CopyObjectOptions... options)
Copies one object to another bucket, retaining UserMetadata from the source. -
Uses of CopyObjectOptions in org.jclouds.s3.options
Fields in org.jclouds.s3.options declared as CopyObjectOptions Modifier and Type Field Description static CopyObjectOptions
CopyObjectOptions. NONE
Methods in org.jclouds.s3.options that return CopyObjectOptions Modifier and Type Method Description static CopyObjectOptions
CopyObjectOptions.Builder. cacheControl(String cacheControl)
CopyObjectOptions
CopyObjectOptions. cacheControl(String cacheControl)
static CopyObjectOptions
CopyObjectOptions.Builder. contentDisposition(String contentDisposition)
CopyObjectOptions
CopyObjectOptions. contentDisposition(String contentDisposition)
static CopyObjectOptions
CopyObjectOptions.Builder. contentEncoding(String contentEncoding)
CopyObjectOptions
CopyObjectOptions. contentEncoding(String contentEncoding)
static CopyObjectOptions
CopyObjectOptions.Builder. contentLanguage(String contentLanguage)
CopyObjectOptions
CopyObjectOptions. contentLanguage(String contentLanguage)
static CopyObjectOptions
CopyObjectOptions.Builder. contentType(String contentType)
CopyObjectOptions
CopyObjectOptions. contentType(String contentType)
static CopyObjectOptions
CopyObjectOptions.Builder. ifSourceETagDoesntMatch(String eTag)
CopyObjectOptions
CopyObjectOptions. ifSourceETagDoesntMatch(String eTag)
The object should not have a eTag hash corresponding with the parametereTag
.static CopyObjectOptions
CopyObjectOptions.Builder. ifSourceETagMatches(String eTag)
CopyObjectOptions
CopyObjectOptions. ifSourceETagMatches(String eTag)
The object's eTag hash should match the parametereTag
.static CopyObjectOptions
CopyObjectOptions.Builder. ifSourceModifiedSince(Date ifModifiedSince)
CopyObjectOptions
CopyObjectOptions. ifSourceModifiedSince(Date ifModifiedSince)
Only return the object if it has changed since this time.static CopyObjectOptions
CopyObjectOptions.Builder. ifSourceUnmodifiedSince(Date ifUnmodifiedSince)
CopyObjectOptions
CopyObjectOptions. ifSourceUnmodifiedSince(Date ifUnmodifiedSince)
Only return the object if it hasn't changed since this time.static CopyObjectOptions
CopyObjectOptions.Builder. overrideAcl(CannedAccessPolicy acl)
CopyObjectOptions
CopyObjectOptions. overrideAcl(CannedAccessPolicy acl)
Override the default ACL (private) with the specified one.static CopyObjectOptions
CopyObjectOptions.Builder. overrideMetadataWith(Map<String,String> metadata)
CopyObjectOptions
CopyObjectOptions. overrideMetadataWith(Map<String,String> metadata)
Use the provided metadata instead of what is on the source object.
-