Lucee Function Reference
s3getversioninfo()
Returns version information as a query for a specific object or bucket.
Example
s3getversioninfo(string bucketName,[string objectName,[string accessKeyId,[string secretAccessKey,[string host,[number timeout]]]]]):query
Arguments
The arguments for this function are set. You can not use other arguments except the following ones.
Name | Type | Required | Default Value | Description |
---|---|---|---|---|
bucketName | string | Yes | Name of the bucket to get info for. | |
objectName | string | No | Name of the object (path) within the bucket to get info for. If not defined, info of the bucket is returned. | |
accessKeyId | string | No | S3 accessKeyId. If not defined, checks the system property/environment variable for [lucee.s3.accesskeyid]. | |
secretAccessKey | string | No | S3 secretAccessKey. If not defined, checks the system property/environment variable for [lucee.s3.secretaccesskey]. | |
host | string | No | The provider to connect to. If not set, Amazon AWS is used. | |
timeout | number | No | 10000 | Timeout for this execution (in milliseconds). |