Skip to main content

Interface: S3Options

Configuration options for Amazon S3 storage service. These options are used to access S3 buckets for file storage and retrieval.

Example

const s3Options: S3Options = {
bucket: 'my-mimeeq-assets',
region: 'us-east-1'
};

Properties

bucket

bucket: string

The name of the S3 bucket to use for storage. All files will be stored in and retrieved from this bucket.


region?

optional region: string

AWS region where the S3 bucket is located. For example: 'us-east-1', 'eu-west-1', etc.