Using the Amazon S3 Object task in Bamboo
Configuration
To configure an Amazon S3 Object task:
- Navigate to the Tasks configuration tab for the job (this will be the default job if creating a new plan).
- Click the name of an existing Amazon S3 Object task, or click Add Task and then Amazon S3 Object Task to create a new task.
Complete the following settings:
Common to all tasks
Actions supported by this task:
Upload File(s)
Don't fail if nothing to upload Check to not fail the build, if there is nothing to upload. Clear to trigger a build failure otherwise. Artifact Select the artifact you want to upload.
Source Local Path Specify the local path (relative to the Bamboo working directory) to the files you want to upload. Use commas to separate files and directories. You can also use:
- Ant-style pattern matching to include multiple files
Ant-style regular expression matching to rename multiple files
Use default excludes when selecting files Check to apply Ant default excludes when selecting files. Uncheck to ignore default excludes.
Due to the way file selection is implemented in Bamboo, this setting also applies when the Use Ant patterns to select filesoption is not checked!
As of Ant 1.8.2 the default excludes also contain common version control meta files/directories (refer to the related upstream issueSCP Task to disable Ant default excludes (BAM-17438) for details):
Upload as ZIP archive Check to compress the selected file(s) into a single ZIP archive before uploading. Uncheck to upload separately. Target Bucket Name Specify the name of the S3 bucket where you want the files to be uploaded to.
Target Object Key Prefix (Virtual Directory) (Optional) Specify the S3 object key prefix you want the uploaded files to gain in the target bucket. Metadata Configuration (Optional) Specify additional metadata in JSON format. Insert fragments from the inline Examples dialog to get started.
Refer to PUT Object and PUT Object - Copy for available metadata options and values covering various use cases, for example:
Tags (Optional) Specify tags to apply to the resulting object(s) in JSON format. Insert fragments from the inline Examples dialog to get started.
Refer to Object Tagging for details.
Download Object(s)
Don't fail if nothing to download Check to not fail the build, if there is nothing to download. Clear to trigger a build failure otherwise. Source Bucket Name Specify the name of the S3 bucket where you want the objects to be downloaded from.
Source Object Key Prefix Specify the key prefix of the S3 objects you want to download from the source bucket. Target Local Path (Optional) Specify the local path (relative to the working directory) where the objects will be downloaded to. Delete Object(s)
Don't fail if nothing to delete Check to not fail the build, if there is nothing to delete. Clear to trigger a build failure otherwise. Source Bucket Name see Download above
Source Object Key Prefix see Download above Copy Object(s)
Don't fail if nothing to copy Check to not fail the build, if there is nothing to copy. Clear to trigger a build failure otherwise. Source Bucket Name see Download above
Source Object Key Prefix see Download above Target Bucket Name see Upload above
Target Object Key Prefix (Virtual Directory) see Upload above Metadata Configuration see Upload above Tags (Optional) Specify tags to apply to the resulting object(s) in JSON format. Insert fragments from the inline Examples dialog to get started.
If you do not specify any tags, the existing tags will be copied – you can prevent the copying of existing tags by providing an empty JSON array.
Refer to Object Tagging for details.
Generate Pre-signed URL
Bucket Name Specify the name of the S3 bucket the URL should target.
Object Key Specify the key of the S3 object the URL should target. Method Select the HTTP method the URL is supposed to be used with.
Currently supported is
GET
– if you have a use case forPUT
,HEAD
orDELETE
, please vote and comment on
Expiration Specify for how long the URL should be valid (seconds).
Variables
Upload File(s)
Download Object(s)
N/A
Delete Object(s)
N/A
Copy Object(s)
Generate Pre-signed URL
How-to Articles