interfaces.go raw

   1  package 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.
   7  type Invalidator interface {
   8  	Invalidate()
   9  }
  10