interfaces.go

1package sdk
2
3// Invalidator provides access to a type's invalidate method to make it
4// invalidate it cache.
5//
6// e.g aws.SafeCredentialsProvider's Invalidate method.
7type Invalidator interface {
8	Invalidate()
9}