Documentation ¶
Overview ¶
Package s3 implements Storage based on an S3 bucket.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Options ¶
type Options struct { // BucketName is the name of the bucket where data is stored. BucketName string `json:"bucket"` // Prefix specifies additional string to prepend to all objects. Prefix string `json:"prefix,omitempty"` Endpoint string `json:"endpoint"` DoNotUseTLS bool `json:"doNotUseTLS,omitempyy"` AccessKeyID string `json:"accessKeyID"` SecretAccessKey string `json:"secretAccessKey" kopia:"sensitive"` MaxUploadSpeedBytesPerSecond int `json:"maxUploadSpeedBytesPerSecond,omitempty"` MaxDownloadSpeedBytesPerSecond int `json:"maxDownloadSpeedBytesPerSecond,omitempty"` }
Options defines options for S3-based storage.
Click to show internal directories.
Click to hide internal directories.