type github.com/aws/aws-sdk-go/aws.Context

38 uses

	github.com/aws/aws-sdk-go/aws (current package)
		context_1_9.go#L11: type Context = context.Context
		context_background_1_7.go#L18: func BackgroundContext() Context {
		context_sleep.go#L12: func SleepWithContext(ctx Context, dur time.Duration) error {

	github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds
		ec2_role_provider.go#L141: func requestCredList(ctx aws.Context, client *ec2metadata.EC2Metadata) ([]string, error) {
		ec2_role_provider.go#L165: func requestCred(ctx aws.Context, client *ec2metadata.EC2Metadata, credsName string) (ec2RoleCredRespBody, error) {

	github.com/aws/aws-sdk-go/aws/credentials/endpointcreds
		provider.go#L157: func (p *Provider) getCredentials(ctx aws.Context) (*getCredentialsOutput, error) {

	github.com/aws/aws-sdk-go/aws/credentials/stscreds
		assume_role_provider.go#L123: 	AssumeRoleWithContext(aws.Context, *sts.AssumeRoleInput, ...request.Option) (*sts.AssumeRoleOutput, error)

	github.com/aws/aws-sdk-go/aws/ec2metadata
		api.go#L19: func (c *EC2Metadata) getToken(ctx aws.Context, duration time.Duration) (tokenOutput, error) {
		api.go#L61: func (c *EC2Metadata) GetMetadataWithContext(ctx aws.Context, p string) (string, error) {
		api.go#L87: func (c *EC2Metadata) GetUserDataWithContext(ctx aws.Context) (string, error) {
		api.go#L112: func (c *EC2Metadata) GetDynamicDataWithContext(ctx aws.Context, p string) (string, error) {
		api.go#L137: func (c *EC2Metadata) GetInstanceIdentityDocumentWithContext(ctx aws.Context) (EC2InstanceIdentityDocument, error) {
		api.go#L161: func (c *EC2Metadata) IAMInfoWithContext(ctx aws.Context) (EC2IAMInfo, error) {
		api.go#L191: func (c *EC2Metadata) RegionWithContext(ctx aws.Context) (string, error) {
		api.go#L215: func (c *EC2Metadata) AvailableWithContext(ctx aws.Context) bool {

	github.com/aws/aws-sdk-go/aws/request
		request.go#L86: 	context aws.Context
		request.go#L216: func (r *Request) Context() aws.Context {
		request.go#L239: func (r *Request) SetContext(ctx aws.Context) {
		request_context.go#L11: func setRequestContext(r *Request, ctx aws.Context) {
		waiter.go#L84: 	SleepWithContext func(aws.Context, time.Duration) error
		waiter.go#L169: func (w Waiter) WaitWithContext(ctx aws.Context) error {

	github.com/aws/aws-sdk-go/aws/signer/v4
		request_context_go1.7.go#L11: func requestContext(r *http.Request) aws.Context {

	github.com/aws/aws-sdk-go/service/sts
		api.go#L225: func (c *STS) AssumeRoleWithContext(ctx aws.Context, input *AssumeRoleInput, opts ...request.Option) (*AssumeRoleOutput, error) {
		api.go#L456: func (c *STS) AssumeRoleWithSAMLWithContext(ctx aws.Context, input *AssumeRoleWithSAMLInput, opts ...request.Option) (*AssumeRoleWithSAMLOutput, error) {
		api.go#L715: func (c *STS) AssumeRoleWithWebIdentityWithContext(ctx aws.Context, input *AssumeRoleWithWebIdentityInput, opts ...request.Option) (*AssumeRoleWithWebIdentityOutput, error) {
		api.go#L827: func (c *STS) DecodeAuthorizationMessageWithContext(ctx aws.Context, input *DecodeAuthorizationMessageInput, opts ...request.Option) (*DecodeAuthorizationMessageOutput, error) {
		api.go#L924: func (c *STS) GetAccessKeyInfoWithContext(ctx aws.Context, input *GetAccessKeyInfoInput, opts ...request.Option) (*GetAccessKeyInfoOutput, error) {
		api.go#L1007: func (c *STS) GetCallerIdentityWithContext(ctx aws.Context, input *GetCallerIdentityInput, opts ...request.Option) (*GetCallerIdentityOutput, error) {
		api.go#L1196: func (c *STS) GetFederationTokenWithContext(ctx aws.Context, input *GetFederationTokenInput, opts ...request.Option) (*GetFederationTokenOutput, error) {
		api.go#L1327: func (c *STS) GetSessionTokenWithContext(ctx aws.Context, input *GetSessionTokenInput, opts ...request.Option) (*GetSessionTokenOutput, error) {

	github.com/aws/aws-sdk-go/service/sts/stsiface
		interface.go#L64: 	AssumeRoleWithContext(aws.Context, *sts.AssumeRoleInput, ...request.Option) (*sts.AssumeRoleOutput, error)
		interface.go#L68: 	AssumeRoleWithSAMLWithContext(aws.Context, *sts.AssumeRoleWithSAMLInput, ...request.Option) (*sts.AssumeRoleWithSAMLOutput, error)
		interface.go#L72: 	AssumeRoleWithWebIdentityWithContext(aws.Context, *sts.AssumeRoleWithWebIdentityInput, ...request.Option) (*sts.AssumeRoleWithWebIdentityOutput, error)
		interface.go#L76: 	DecodeAuthorizationMessageWithContext(aws.Context, *sts.DecodeAuthorizationMessageInput, ...request.Option) (*sts.DecodeAuthorizationMessageOutput, error)
		interface.go#L80: 	GetAccessKeyInfoWithContext(aws.Context, *sts.GetAccessKeyInfoInput, ...request.Option) (*sts.GetAccessKeyInfoOutput, error)
		interface.go#L84: 	GetCallerIdentityWithContext(aws.Context, *sts.GetCallerIdentityInput, ...request.Option) (*sts.GetCallerIdentityOutput, error)
		interface.go#L88: 	GetFederationTokenWithContext(aws.Context, *sts.GetFederationTokenInput, ...request.Option) (*sts.GetFederationTokenOutput, error)
		interface.go#L92: 	GetSessionTokenWithContext(aws.Context, *sts.GetSessionTokenInput, ...request.Option) (*sts.GetSessionTokenOutput, error)