S3 Store
Description | Connection to an Amazon/Minio S3 Bucket |
---|---|
Type | s3 |
Category | File |
Configuration
Name | Description | Type | Mandatory | Comment |
---|---|---|---|---|
ServiceUrl | URL to the required service | string | TRUE, one of them | The URL to the MinIO server. If this option is specified, "RegionEndPoint" is ignored. |
RegionEndPoint | Name of the region endpoint | string | The Amazon database region endpoint. Something like "us-east-1". When using an amazon S3 bucket, this option is used to generate the “ServiceUrl”option. This option is ignored if ServiceUrl is specified. | |
AccessKey | User access key | string | TRUE | |
SecretKey | User secret | string | TRUE | |
BucketName | The name of the bucket to be accessed | string | TRUE |
{
{
"Name": "minio-test",
"Type": "s3",
"Config": {
"ServiceUrl": "http://localhost:9000",
"AccessKey": "test",
"SecretKey": "testtest",
"BucketName": "test"
}
},
{
"Name": "amazon-test",
"Type": "s3",
"Config": {
"RegionEndPoint": "us-east-1",
"AccessKey": "AKIAIOSFODNN7EXAMPLE",
"SecretKey": "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY",
"BucketName": "bucket-of-shrimp-the-fruit-of-the-sea"
}
}
}