You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Amazon S3 Plugin is a pre-packaged, plug-and-play integration component for the FlowSynx engine. It enables interacting with Amazon S3 buckets, allowing workflows to read, write, list, and manage S3 objects securely. Designed for FlowSynx’s no-code/low-code automation workflows, this plugin simplifies cloud storage integration for data pipelines and automation tasks.
This plugin is automatically installed by the FlowSynx engine when selected within the platform. It is not intended for manual installation or standalone developer use outside the FlowSynx environment.
Purpose
The Amazon S3 Plugin allows FlowSynx users to:
Upload data to Amazon S3 buckets.
Download or read data from S3 objects.
List, delete, or check the existence of S3 objects.
Purge S3 buckets when needed.
Integrate Amazon S3 operations into automation workflows without writing code.
Supported Operations
create: Creates a new object in the specified bucket and path.
delete: Deletes an object at the specified path in the bucket.
exist: Checks if an object exists at the specified path.
list: Lists objects under a specified path (prefix), with filtering and optional metadata.
purge: Deletes all objects under the specified path, optionally forcing deletion.
read: Reads and returns the contents of an object at the specified path.
write: Writes data to a specified path in the bucket, with support for overwrite.
Plugin Specifications
The plugin requires the following configuration:
AccessKey (string): Required. The AWS Access Key ID for authentication.
SecretKey (string): Required. The AWS Secret Access Key for authentication.
Region (string): Required. The AWS region of the S3 bucket (e.g., us-east-1).
Bucket (string): Required. The name of the target S3 bucket.
SessionToken (string): Optional. The AWS session token if using temporary credentials.
Plugin for FlowSynx engine to interacts with Amazon S3 for file storage and retrieval. Supports bucket operations, object listing, file uploads, and downloads.