s3move()
Moves an object in S3 from one bucket to an other.
Requires Extension: S3 Resource Extension
s3move( srcBucketName=string, srcObjectName=string, trgBucketName=string, trgObjectName=string, acl=object, location=string, accessKeyId=string, secretAccessKey=string, host=string, timeout=number );
Returns: void
| Argument | Description | Default |
|---|---|---|
|
srcBucketName
string,
required
|
edit
Name of the source bucket of your object to move. Alias: srcBucket, sourceBucketName, sourceBucket |
|
|
srcObjectName
string,
required
|
edit
Name of the source object (path) within the bucket of your object to move. Alias: sourceObjectName, srcObject, sourceObject |
|
|
trgBucketName
string,
required
|
edit
Name of the target bucket of your object to move Alias: trgBucket, targetBucketName, targetBucket |
|
|
trgObjectName
string,
optional
|
edit
Name of the target object (path)for the target bucket. If not defined the source object name is used. Alias: targetObjectName, trgObject, targetObject |
|
|
acl
object,
optional
|
edit
an array of struct where each struct represents an ACL grant Alias: aclObject |
|
|
location
string,
optional
|
edit
location of the S3 storage. Alias: region |
|
|
accessKeyId
string,
optional
|
edit
S3 accessKeyId, if not defined it checks the system property/environment variable for [lucee.s3.accesskeyid]. Alias: accessKey, awsAccessKeyId, awsAccessKey |
|
|
secretAccessKey
string,
optional
|
edit
S3 secretAccessKey, if not defined it checks the system property/environment variable for [lucee.s3.secretaccesskey]. Alias: secretkey, awsSecretkey, awsSecretAccessKey |
|
|
host
string,
optional
|
edit
the provider to connect, if not set Amazon AWS is used. Alias: provider, server |
|
|
timeout
number,
optional
|
edit
timeout for this execution |
10000 |
Examples
There are currently no examples for this function 39,945ms WARN No examples for function S3MoveSee also
- S3
- Search Issue Tracker open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)