context_1_9.go 285 B

1234567891011
  1. // +build go1.9
  2. package aws
  3. import "context"
  4. // Context is an alias of the Go stdlib's context.Context interface.
  5. // It can be used within the SDK's API operation "WithContext" methods.
  6. //
  7. // See https://golang.org/pkg/context on how to use contexts.
  8. type Context = context.Context