debian-forge-composer/vendor/github.com/aws/aws-sdk-go-v2/internal/sdk/interfaces.go
Sanne Raymaekers 5e3bc8a705 go.mod: vendor aws-sdk-v2
Removes the v1 aws sdk.
2024-08-20 15:32:40 +02:00

9 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()
}