interfaces.go 213 B

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