blob: 2b42cbe6421a818aaf55b8d9ab17d6c61d8e1aee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
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()
}
|