2018-07-14 08:48:22 +00:00
|
|
|
package s3
|
|
|
|
|
2018-07-16 18:24:54 +00:00
|
|
|
// Config holds values to configure the driver
|
|
|
|
type Config struct {
|
2018-07-14 08:48:22 +00:00
|
|
|
AccessKeyID string
|
|
|
|
SecretAccessKey string
|
|
|
|
Region string
|
|
|
|
Endpoint string
|
2018-07-16 20:27:45 +00:00
|
|
|
Mounter string
|
|
|
|
EncryptionKey string
|
2018-07-14 08:48:22 +00:00
|
|
|
}
|