Back to Amazon S3 Integrations
Handler · Version 1

Amazon S3 Bucket Create Amazon S3

Download GitHub

About

This handler creates a new bucket on Amazon S3 and returns the location of the bucket created. This is done by using an account's Access Key and Secret Access Key to authenticate with the Amazon S3 server and then creating the bucket using the parameters that the AWS S3 Create Bucket API accepts. This handler was build using the AWS Ruby SDK. Documentation can be found here: https://docs.aws.amazon.com/sdk-for-ruby/v2/api/Aws/S3/Client.html#create_bucket-instance_method

Configurations
Name Description Sample
access_key AWS Access Key.
secret_key AWS Secret Key. *********
region AWS Region that the S3 object is located in. Also can be inputted as a parameter. us-east-1
enable_debug_logging Enable debug logging if the value is set to 'Yes'. No
Parameters
Name Description Sample
Bucket Name of the bucket to create. sample-bucket-name
Region Id of the region the inteded S3 server is located in. If not provided, defaults to info value us-east-1
ACL The canned ACL to apply to the bucket. Accepts private, public-read, public-read-write, authenticated-read private
Grant Full Control Allows grantee the read, write, read ACP, and write ACP permissions on the bucket. GrantFullControl
Grant Read Allows grantee to list the objects in the bucket. GrantRead
Grant Read ACP Allows grantee to read the bucket ACL. GrantReadACP
Grant Write Allows grantee to create, overwrite, and delete any object in the bucket. GrantWrite
Grant Write ACP Allows grantee to write the ACL for the applicable bucket. GrantWriteACP
Object Lock Enabled (true/false) Specifies whether you want S3 Object Lock to be enabled for the new bucket. false
Results
Name Description
Location Location of the created bucket.
Changelog

Amazon S3 Bucket Create V1.0 (2023-12-05)

  • Initial version. See README for details.
Download GitHub

On This Page

Looking for a workflow engine? Learn more about the Kinetic Data Enterprise Workflow Platform. Check it out
Return to Top