mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-19 15:06:25 +01:00
5b7e8d1309
* lib/backup/s3remote: update AWS SDK to v2 * Update lib/backup/s3remote/s3.go Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com> * lib/backup/s3remote: refactor error handling Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com>
10 lines
213 B
Go
10 lines
213 B
Go
package sdk
|
|
|
|
// Invalidator provides access to a type's invalidate method to make it
|
|
// invalidate it cache.
|
|
//
|
|
// e.g aws.SafeCredentialsProvider's Invalidate method.
|
|
type Invalidator interface {
|
|
Invalidate()
|
|
}
|