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>
		
			
				
	
	
		
			24 lines
		
	
	
		
			582 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			582 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package transport
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
	"net/url"
 | 
						|
 | 
						|
	"github.com/aws/smithy-go"
 | 
						|
)
 | 
						|
 | 
						|
// Endpoint is the endpoint object returned by Endpoint resolution V2
 | 
						|
type Endpoint struct {
 | 
						|
	// The complete URL minimally specfiying the scheme and host.
 | 
						|
	// May optionally specify the port and base path component.
 | 
						|
	URI url.URL
 | 
						|
 | 
						|
	// An optional set of headers to be sent using transport layer headers.
 | 
						|
	Headers http.Header
 | 
						|
 | 
						|
	// A grab-bag property map of endpoint attributes. The
 | 
						|
	// values present here are subject to change, or being add/removed at any
 | 
						|
	// time.
 | 
						|
	Properties smithy.Properties
 | 
						|
}
 |