scheme_id.go raw
1 package auth
2
3 // Anonymous
4 const (
5 SchemeIDAnonymous = "smithy.api#noAuth"
6 )
7
8 // HTTP auth schemes
9 const (
10 SchemeIDHTTPBasic = "smithy.api#httpBasicAuth"
11 SchemeIDHTTPDigest = "smithy.api#httpDigestAuth"
12 SchemeIDHTTPBearer = "smithy.api#httpBearerAuth"
13 SchemeIDHTTPAPIKey = "smithy.api#httpApiKeyAuth"
14 )
15
16 // AWS auth schemes
17 const (
18 SchemeIDSigV4 = "aws.auth#sigv4"
19 SchemeIDSigV4A = "aws.auth#sigv4a"
20 )
21