github.com/aavshr/aws-sdk-go@v1.41.3/aws/credentials/context_go1.9.go (about) 1 //go:build go1.9 2 // +build go1.9 3 4 package credentials 5 6 import "context" 7 8 // Context is an alias of the Go stdlib's context.Context interface. 9 // It can be used within the SDK's API operation "WithContext" methods. 10 // 11 // This type, aws.Context, and context.Context are equivalent. 12 // 13 // See https://golang.org/pkg/context on how to use contexts. 14 type Context = context.Context