AWS S3 Configuration
To set up an AWS S3 storage provider, provide the following configuration:
const awsConfig = {
bucketName: "your-bucket-name",
accessKeyId: "your-access-key-id",
secretAccessKey: "your-secret-access-key",
region: "us-east-1"
};
- bucketName: The name of the S3 bucket.
- accessKeyId: AWS access key ID.
- secretAccessKey: AWS secret access key.
- region: AWS region where the bucket is hosted.