scheme_id.go 411 B

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