...

Source file src/github.com/aws/aws-sdk-go-v2/internal/sdk/interfaces.go

Documentation: github.com/aws/aws-sdk-go-v2/internal/sdk

     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  

View as plain text