mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	vendor github.com/aws/aws-sdk-go-v2/config v1.26.6 and related dependencies. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
		
			
				
	
	
		
			21 lines
		
	
	
		
			411 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			411 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package auth
 | 
						|
 | 
						|
// Anonymous
 | 
						|
const (
 | 
						|
	SchemeIDAnonymous = "smithy.api#noAuth"
 | 
						|
)
 | 
						|
 | 
						|
// HTTP auth schemes
 | 
						|
const (
 | 
						|
	SchemeIDHTTPBasic  = "smithy.api#httpBasicAuth"
 | 
						|
	SchemeIDHTTPDigest = "smithy.api#httpDigestAuth"
 | 
						|
	SchemeIDHTTPBearer = "smithy.api#httpBearerAuth"
 | 
						|
	SchemeIDHTTPAPIKey = "smithy.api#httpApiKeyAuth"
 | 
						|
)
 | 
						|
 | 
						|
// AWS auth schemes
 | 
						|
const (
 | 
						|
	SchemeIDSigV4  = "aws.auth#sigv4"
 | 
						|
	SchemeIDSigV4A = "aws.auth#sigv4a"
 | 
						|
)
 |