github.com/aavshr/aws-sdk-go@v1.41.3/aws/context_1_9.go (about) 1 //go:build go1.9 2 // +build go1.9 3 4 package aws 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 // See https://golang.org/pkg/context on how to use contexts. 12 type Context = context.Context