CredentialsSourceName provides a name of the provider when config is loaded from environment.
const CredentialsSourceName = "EnvConfigCredentials"
const ( // DefaultSharedConfigProfile is the default profile to be used when // loading configuration from the config files if another profile name // is not provided. = `default` )
DefaultSharedConfigFiles is a slice of the default shared config files that the will be used in order to load the SharedConfig.
var string{ DefaultSharedConfigFilename(), }= []
DefaultSharedCredentialsFiles is a slice of the default shared credentials files that the will be used in order to load the SharedConfig.
var string{ DefaultSharedCredentialsFilename(), }= []
func DefaultSharedConfigFilename() string
DefaultSharedConfigFilename returns the SDK's default file path for the shared config file.
Builds the shared config file path based on the OS's platform.
func DefaultSharedCredentialsFilename() string
DefaultSharedCredentialsFilename returns the SDK's default file path for the shared credentials file.
Builds the shared config file path based on the OS's platform.
func GetIgnoreConfiguredEndpoints(ctx context.Context, configs []interface{}) (value bool, found bool, err error)
GetIgnoreConfiguredEndpoints is used in knowing when to disable configured endpoints feature.
func LoadDefaultConfig(ctx context.Context, optFns ...func(*LoadOptions) error) (cfg aws.Config, err error)
LoadDefaultConfig reads the SDK's default external configurations, and populates an AWS Config with the values from the external configurations.
An optional variadic set of additional Config values can be provided as input that will be prepended to the configs slice. Use this to add custom configuration. The custom configurations must satisfy the respective providers for their data or the custom data will be ignored by the resolvers and config loaders.
cfg, err := config.LoadDefaultConfig( context.TODO(), config.WithSharedConfigProfile("test-profile"), ) if err != nil { panic(fmt.Sprintf("failed loading config, %v", err)) }
The default configuration sources are: * Environment Variables * Shared Configuration and Shared Credentials files.
AssumeRoleTokenProviderNotSetError is an error returned when creating a session when the MFAToken option is not set when shared config is configured load assume a role with an MFA token.
type AssumeRoleTokenProviderNotSetError struct{}
func (e AssumeRoleTokenProviderNotSetError) Error() string
Error is the error message
A Config represents a generic configuration value or set of values. This type will be used by the AWSConfigResolvers to extract
General the Config type will use type assertion against the Provider interfaces to extract specific data from the Config.
type Config interface{}
CredentialRequiresARNError provides the error for shared config credentials that are incorrectly configured in the shared config or credentials file.
type CredentialRequiresARNError struct { // type of credentials that were configured. Type string // Profile name the credentials were in. Profile string }
func (e CredentialRequiresARNError) Error() string
Error satisfies the error interface.
DefaultsModeOptions is the set of options that are used to configure
type DefaultsModeOptions struct { // The SDK configuration defaults mode. Defaults to legacy if not specified. // // Supported modes are: auto, cross-region, in-region, legacy, mobile, standard Mode aws.DefaultsMode // The EC2 Instance Metadata Client that should be used when performing environment // discovery when aws.DefaultsModeAuto is set. // // If not specified the SDK will construct a client if the instance metadata service has not been disabled by // the AWS_EC2_METADATA_DISABLED environment variable. IMDSClient *imds.Client }
EnvConfig is a collection of environment values the SDK will read setup config from. All environment values are optional. But some values such as credentials require multiple values to be complete or the values will be ignored.
type EnvConfig struct { // Environment configuration values. If set both Access Key ID and Secret Access // Key must be provided. Session Token and optionally also be provided, but is // not required. // // # Access Key ID // AWS_ACCESS_KEY_ID=AKID // AWS_ACCESS_KEY=AKID # only read if AWS_ACCESS_KEY_ID is not set. // // # Secret Access Key // AWS_SECRET_ACCESS_KEY=SECRET // AWS_SECRET_KEY=SECRET # only read if AWS_SECRET_ACCESS_KEY is not set. // // # Session Token // AWS_SESSION_TOKEN=TOKEN Credentials aws.Credentials // ContainerCredentialsEndpoint value is the HTTP enabled endpoint to retrieve credentials // using the endpointcreds.Provider ContainerCredentialsEndpoint string // ContainerCredentialsRelativePath is the relative URI path that will be used when attempting to retrieve // credentials from the container endpoint. ContainerCredentialsRelativePath string // ContainerAuthorizationToken is the authorization token that will be included in the HTTP Authorization // header when attempting to retrieve credentials from the container credentials endpoint. ContainerAuthorizationToken string // Region value will instruct the SDK where to make service API requests to. If is // not provided in the environment the region must be provided before a service // client request is made. // // AWS_REGION=us-west-2 // AWS_DEFAULT_REGION=us-west-2 Region string // Profile name the SDK should load use when loading shared configuration from the // shared configuration files. If not provided "default" will be used as the // profile name. // // AWS_PROFILE=my_profile // AWS_DEFAULT_PROFILE=my_profile SharedConfigProfile string // Shared credentials file path can be set to instruct the SDK to use an alternate // file for the shared credentials. If not set the file will be loaded from // $HOME/.aws/credentials on Linux/Unix based systems, and // %USERPROFILE%\.aws\credentials on Windows. // // AWS_SHARED_CREDENTIALS_FILE=$HOME/my_shared_credentials SharedCredentialsFile string // Shared config file path can be set to instruct the SDK to use an alternate // file for the shared config. If not set the file will be loaded from // $HOME/.aws/config on Linux/Unix based systems, and // %USERPROFILE%\.aws\config on Windows. // // AWS_CONFIG_FILE=$HOME/my_shared_config SharedConfigFile string // Sets the path to a custom Credentials Authority (CA) Bundle PEM file // that the SDK will use instead of the system's root CA bundle. // Only use this if you want to configure the SDK to use a custom set // of CAs. // // Enabling this option will attempt to merge the Transport // into the SDK's HTTP client. If the client's Transport is // not a http.Transport an error will be returned. If the // Transport's TLS config is set this option will cause the // SDK to overwrite the Transport's TLS config's RootCAs value. // // Setting a custom HTTPClient in the aws.Config options will override this setting. // To use this option and custom HTTP client, the HTTP client needs to be provided // when creating the config. Not the service client. // // AWS_CA_BUNDLE=$HOME/my_custom_ca_bundle CustomCABundle string // Enables endpoint discovery via environment variables. // // AWS_ENABLE_ENDPOINT_DISCOVERY=true EnableEndpointDiscovery aws.EndpointDiscoveryEnableState // Specifies the WebIdentity token the SDK should use to assume a role // with. // // AWS_WEB_IDENTITY_TOKEN_FILE=file_path WebIdentityTokenFilePath string // Specifies the IAM role arn to use when assuming an role. // // AWS_ROLE_ARN=role_arn RoleARN string // Specifies the IAM role session name to use when assuming a role. // // AWS_ROLE_SESSION_NAME=session_name RoleSessionName string // Specifies if the S3 service should allow ARNs to direct the region // the client's requests are sent to. // // AWS_S3_USE_ARN_REGION=true S3UseARNRegion *bool // Specifies if the EC2 IMDS service client is enabled. // // AWS_EC2_METADATA_DISABLED=true EC2IMDSClientEnableState imds.ClientEnableState // Specifies if EC2 IMDSv1 fallback is disabled. // // AWS_EC2_METADATA_V1_DISABLED=true EC2IMDSv1Disabled *bool // Specifies the EC2 Instance Metadata Service default endpoint selection mode (IPv4 or IPv6) // // AWS_EC2_METADATA_SERVICE_ENDPOINT_MODE=IPv6 EC2IMDSEndpointMode imds.EndpointModeState // Specifies the EC2 Instance Metadata Service endpoint to use. If specified it overrides EC2IMDSEndpointMode. // // AWS_EC2_METADATA_SERVICE_ENDPOINT=http://fd00:ec2::254 EC2IMDSEndpoint string // Specifies if the S3 service should disable multi-region access points // support. // // AWS_S3_DISABLE_MULTIREGION_ACCESS_POINTS=true S3DisableMultiRegionAccessPoints *bool // Specifies that SDK clients must resolve a dual-stack endpoint for // services. // // AWS_USE_DUALSTACK_ENDPOINT=true UseDualStackEndpoint aws.DualStackEndpointState // Specifies that SDK clients must resolve a FIPS endpoint for // services. // // AWS_USE_FIPS_ENDPOINT=true UseFIPSEndpoint aws.FIPSEndpointState // Specifies the SDK Defaults Mode used by services. // // AWS_DEFAULTS_MODE=standard DefaultsMode aws.DefaultsMode // Specifies the maximum number attempts an API client will call an // operation that fails with a retryable error. // // AWS_MAX_ATTEMPTS=3 RetryMaxAttempts int // Specifies the retry model the API client will be created with. // // aws_retry_mode=standard RetryMode aws.RetryMode // aws sdk app ID that can be added to user agent header string AppID string // Flag used to disable configured endpoints. IgnoreConfiguredEndpoints *bool // Value to contain configured endpoints to be propagated to // corresponding endpoint resolution field. BaseEndpoint string // determine if request compression is allowed, default to false // retrieved from env var AWS_DISABLE_REQUEST_COMPRESSION DisableRequestCompression *bool // inclusive threshold request body size to trigger compression, // default to 10240 and must be within 0 and 10485760 bytes inclusive // retrieved from env var AWS_REQUEST_MIN_COMPRESSION_SIZE_BYTES RequestMinCompressSizeBytes *int64 // Whether S3Express auth is disabled. // // This will NOT prevent requests from being made to S3Express buckets, it // will only bypass the modified endpoint routing and signing behaviors // associated with the feature. S3DisableExpressAuth *bool }
func NewEnvConfig() (EnvConfig, error)
NewEnvConfig retrieves the SDK's environment configuration. See `EnvConfig` for the values that will be retrieved.
func (c EnvConfig) GetEC2IMDSClientEnableState() (imds.ClientEnableState, bool, error)
GetEC2IMDSClientEnableState implements a EC2IMDSClientEnableState options resolver interface.
func (c EnvConfig) GetEC2IMDSEndpoint() (string, bool, error)
GetEC2IMDSEndpoint implements a EC2IMDSEndpoint option resolver interface.
func (c EnvConfig) GetEC2IMDSEndpointMode() (imds.EndpointModeState, bool, error)
GetEC2IMDSEndpointMode implements a EC2IMDSEndpointMode option resolver interface.
func (c EnvConfig) GetEC2IMDSV1FallbackDisabled() (bool, bool)
GetEC2IMDSV1FallbackDisabled implements an EC2IMDSV1FallbackDisabled option resolver interface.
func (c EnvConfig) GetEnableEndpointDiscovery(ctx context.Context) (value aws.EndpointDiscoveryEnableState, found bool, err error)
GetEnableEndpointDiscovery returns resolved value for EnableEndpointDiscovery env variable setting.
func (c EnvConfig) GetIgnoreConfiguredEndpoints(context.Context) (bool, bool, error)
GetIgnoreConfiguredEndpoints is used in knowing when to disable configured endpoints feature.
func (c EnvConfig) GetRetryMaxAttempts(ctx context.Context) (int, bool, error)
GetRetryMaxAttempts returns the value of AWS_MAX_ATTEMPTS if was specified, and not 0.
func (c EnvConfig) GetRetryMode(ctx context.Context) (aws.RetryMode, bool, error)
GetRetryMode returns the RetryMode of AWS_RETRY_MODE if was specified, and a valid value.
func (c EnvConfig) GetS3DisableExpressAuth() (value, ok bool)
GetS3DisableExpressAuth returns the configured value for [EnvConfig.S3DisableExpressAuth].
func (c EnvConfig) GetS3DisableMultiRegionAccessPoints(ctx context.Context) (value, ok bool, err error)
GetS3DisableMultiRegionAccessPoints returns whether to disable multi-region access point support for the S3 client.
func (c EnvConfig) GetS3UseARNRegion(ctx context.Context) (value, ok bool, err error)
GetS3UseARNRegion returns whether to allow ARNs to direct the region the S3 client's requests are sent to.
func (c EnvConfig) GetServiceBaseEndpoint(ctx context.Context, sdkID string) (string, bool, error)
GetServiceBaseEndpoint is used to retrieve a normalized SDK ID for use with configured endpoints.
func (c EnvConfig) GetUseDualStackEndpoint(ctx context.Context) (value aws.DualStackEndpointState, found bool, err error)
GetUseDualStackEndpoint returns whether the service's dual-stack endpoint should be used for requests.
func (c EnvConfig) GetUseFIPSEndpoint(ctx context.Context) (value aws.FIPSEndpointState, found bool, err error)
GetUseFIPSEndpoint returns whether the service's FIPS endpoint should be used for requests.
HTTPClient is an HTTP client implementation
type HTTPClient interface { Do(*http.Request) (*http.Response, error) }
IgnoreConfiguredEndpointsProvider is needed to search for all providers that provide a flag to disable configured endpoints.
type IgnoreConfiguredEndpointsProvider interface { GetIgnoreConfiguredEndpoints(ctx context.Context) (bool, bool, error) }
LoadOptions are discrete set of options that are valid for loading the configuration
type LoadOptions struct { // Region is the region to send requests to. Region string // Credentials object to use when signing requests. Credentials aws.CredentialsProvider // Token provider for authentication operations with bearer authentication. BearerAuthTokenProvider smithybearer.TokenProvider // HTTPClient the SDK's API clients will use to invoke HTTP requests. HTTPClient HTTPClient // EndpointResolver that can be used to provide or override an endpoint for // the given service and region. // // See the `aws.EndpointResolver` documentation on usage. // // Deprecated: See EndpointResolverWithOptions EndpointResolver aws.EndpointResolver // EndpointResolverWithOptions that can be used to provide or override an // endpoint for the given service and region. // // See the `aws.EndpointResolverWithOptions` documentation on usage. EndpointResolverWithOptions aws.EndpointResolverWithOptions // RetryMaxAttempts specifies the maximum number attempts an API client // will call an operation that fails with a retryable error. // // This value will only be used if Retryer option is nil. RetryMaxAttempts int // RetryMode specifies the retry model the API client will be created with. // // This value will only be used if Retryer option is nil. RetryMode aws.RetryMode // Retryer is a function that provides a Retryer implementation. A Retryer // guides how HTTP requests should be retried in case of recoverable // failures. // // If not nil, RetryMaxAttempts, and RetryMode will be ignored. Retryer func() aws.Retryer // APIOptions provides the set of middleware mutations modify how the API // client requests will be handled. This is useful for adding additional // tracing data to a request, or changing behavior of the SDK's client. APIOptions []func(*middleware.Stack) error // Logger writer interface to write logging messages to. Logger logging.Logger // ClientLogMode is used to configure the events that will be sent to the // configured logger. This can be used to configure the logging of signing, // retries, request, and responses of the SDK clients. // // See the ClientLogMode type documentation for the complete set of logging // modes and available configuration. ClientLogMode *aws.ClientLogMode // SharedConfigProfile is the profile to be used when loading the SharedConfig SharedConfigProfile string // SharedConfigFiles is the slice of custom shared config files to use when // loading the SharedConfig. A non-default profile used within config file // must have name defined with prefix 'profile '. eg [profile xyz] // indicates a profile with name 'xyz'. To read more on the format of the // config file, please refer the documentation at // https://docs.aws.amazon.com/credref/latest/refdocs/file-format.html#file-format-config // // If duplicate profiles are provided within the same, or across multiple // shared config files, the next parsed profile will override only the // properties that conflict with the previously defined profile. Note that // if duplicate profiles are provided within the SharedCredentialsFiles and // SharedConfigFiles, the properties defined in shared credentials file // take precedence. SharedConfigFiles []string // SharedCredentialsFile is the slice of custom shared credentials files to // use when loading the SharedConfig. The profile name used within // credentials file must not prefix 'profile '. eg [xyz] indicates a // profile with name 'xyz'. Profile declared as [profile xyz] will be // ignored. To read more on the format of the credentials file, please // refer the documentation at // https://docs.aws.amazon.com/credref/latest/refdocs/file-format.html#file-format-creds // // If duplicate profiles are provided with a same, or across multiple // shared credentials files, the next parsed profile will override only // properties that conflict with the previously defined profile. Note that // if duplicate profiles are provided within the SharedCredentialsFiles and // SharedConfigFiles, the properties defined in shared credentials file // take precedence. SharedCredentialsFiles []string // CustomCABundle is CA bundle PEM bytes reader CustomCABundle io.Reader // DefaultRegion is the fall back region, used if a region was not resolved // from other sources DefaultRegion string // UseEC2IMDSRegion indicates if SDK should retrieve the region // from the EC2 Metadata service UseEC2IMDSRegion *UseEC2IMDSRegion // CredentialsCacheOptions is a function for setting the // aws.CredentialsCacheOptions CredentialsCacheOptions func(*aws.CredentialsCacheOptions) // BearerAuthTokenCacheOptions is a function for setting the smithy-go // auth/bearer#TokenCacheOptions BearerAuthTokenCacheOptions func(*smithybearer.TokenCacheOptions) // SSOTokenProviderOptions is a function for setting the // credentials/ssocreds.SSOTokenProviderOptions SSOTokenProviderOptions func(*ssocreds.SSOTokenProviderOptions) // ProcessCredentialOptions is a function for setting // the processcreds.Options ProcessCredentialOptions func(*processcreds.Options) // EC2RoleCredentialOptions is a function for setting // the ec2rolecreds.Options EC2RoleCredentialOptions func(*ec2rolecreds.Options) // EndpointCredentialOptions is a function for setting // the endpointcreds.Options EndpointCredentialOptions func(*endpointcreds.Options) // WebIdentityRoleCredentialOptions is a function for setting // the stscreds.WebIdentityRoleOptions WebIdentityRoleCredentialOptions func(*stscreds.WebIdentityRoleOptions) // AssumeRoleCredentialOptions is a function for setting the // stscreds.AssumeRoleOptions AssumeRoleCredentialOptions func(*stscreds.AssumeRoleOptions) // SSOProviderOptions is a function for setting // the ssocreds.Options SSOProviderOptions func(options *ssocreds.Options) // LogConfigurationWarnings when set to true, enables logging // configuration warnings LogConfigurationWarnings *bool // S3UseARNRegion specifies if the S3 service should allow ARNs to direct // the region, the client's requests are sent to. S3UseARNRegion *bool // S3DisableMultiRegionAccessPoints specifies if the S3 service should disable // the S3 Multi-Region access points feature. S3DisableMultiRegionAccessPoints *bool // EnableEndpointDiscovery specifies if endpoint discovery is enable for // the client. EnableEndpointDiscovery aws.EndpointDiscoveryEnableState // Specifies if the EC2 IMDS service client is enabled. // // AWS_EC2_METADATA_DISABLED=true EC2IMDSClientEnableState imds.ClientEnableState // Specifies the EC2 Instance Metadata Service default endpoint selection // mode (IPv4 or IPv6) EC2IMDSEndpointMode imds.EndpointModeState // Specifies the EC2 Instance Metadata Service endpoint to use. If // specified it overrides EC2IMDSEndpointMode. EC2IMDSEndpoint string // Specifies that SDK clients must resolve a dual-stack endpoint for // services. UseDualStackEndpoint aws.DualStackEndpointState // Specifies that SDK clients must resolve a FIPS endpoint for // services. UseFIPSEndpoint aws.FIPSEndpointState // Specifies the SDK configuration mode for defaults. DefaultsModeOptions DefaultsModeOptions // The sdk app ID retrieved from env var or shared config to be added to request user agent header AppID string // Specifies whether an operation request could be compressed DisableRequestCompression *bool // The inclusive min bytes of a request body that could be compressed RequestMinCompressSizeBytes *int64 // Whether S3 Express auth is disabled. S3DisableExpressAuth *bool }
func (o LoadOptions) GetEC2IMDSClientEnableState() (imds.ClientEnableState, bool, error)
GetEC2IMDSClientEnableState implements a EC2IMDSClientEnableState options resolver interface.
func (o LoadOptions) GetEC2IMDSEndpoint() (string, bool, error)
GetEC2IMDSEndpoint implements a EC2IMDSEndpoint option resolver interface.
func (o LoadOptions) GetEC2IMDSEndpointMode() (imds.EndpointModeState, bool, error)
GetEC2IMDSEndpointMode implements a EC2IMDSEndpointMode option resolver interface.
func (o LoadOptions) GetEnableEndpointDiscovery(ctx context.Context) (value aws.EndpointDiscoveryEnableState, ok bool, err error)
GetEnableEndpointDiscovery returns if the EnableEndpointDiscovery flag is set.
func (o LoadOptions) GetRetryMaxAttempts(ctx context.Context) (int, bool, error)
GetRetryMaxAttempts returns the RetryMaxAttempts if specified in the LoadOptions and not 0.
func (o LoadOptions) GetRetryMode(ctx context.Context) (aws.RetryMode, bool, error)
GetRetryMode returns the RetryMode specified in the LoadOptions.
func (o LoadOptions) GetS3DisableExpressAuth() (value, ok bool)
GetS3DisableExpressAuth returns the configured value for [EnvConfig.S3DisableExpressAuth].
func (o LoadOptions) GetS3DisableMultiRegionAccessPoints(ctx context.Context) (v bool, found bool, err error)
GetS3DisableMultiRegionAccessPoints returns whether to disable the S3 multi-region access points feature.
func (o LoadOptions) GetS3UseARNRegion(ctx context.Context) (v bool, found bool, err error)
GetS3UseARNRegion returns whether to allow ARNs to direct the region the S3 client's requests are sent to.
func (o LoadOptions) GetUseDualStackEndpoint(ctx context.Context) (value aws.DualStackEndpointState, found bool, err error)
GetUseDualStackEndpoint returns whether the service's dual-stack endpoint should be used for requests.
func (o LoadOptions) GetUseFIPSEndpoint(ctx context.Context) (value aws.FIPSEndpointState, found bool, err error)
GetUseFIPSEndpoint returns whether the service's FIPS endpoint should be used for requests.
LoadOptionsFunc is a type alias for LoadOptions functional option
type LoadOptionsFunc func(*LoadOptions) error
func WithAPIOptions(v []func(*middleware.Stack) error) LoadOptionsFunc
WithAPIOptions is a helper function to construct functional options that sets APIOptions on LoadOptions. If APIOptions is set to nil, the APIOptions value is ignored. If multiple WithAPIOptions calls are made, the last call overrides the previous call values.
▹ Example
func WithAppID(ID string) LoadOptionsFunc
WithAppID is a helper function to construct functional options that sets AppID on config's LoadOptions.
func WithAssumeRoleCredentialOptions(v func(*stscreds.AssumeRoleOptions)) LoadOptionsFunc
WithAssumeRoleCredentialOptions is a helper function to construct functional options that sets a function to use stscreds.AssumeRoleOptions on config's LoadOptions. If assume role credentials options is set to nil, the assume role credentials value will be ignored. If multiple WithAssumeRoleCredentialOptions calls are made, the last call overrides the previous call values.
▹ Example
func WithBearerAuthTokenCacheOptions(v func(*smithybearer.TokenCacheOptions)) LoadOptionsFunc
WithBearerAuthTokenCacheOptions is a helper function to construct functional options that sets a function to modify the TokenCacheOptions the smithy-go auth/bearer#TokenCache will be configured with, if the TokenCache is used by the configuration loader.
If multiple WithBearerAuthTokenCacheOptions calls are made, the last call overrides the previous call values.
func WithBearerAuthTokenProvider(v smithybearer.TokenProvider) LoadOptionsFunc
WithBearerAuthTokenProvider is a helper function to construct functional options that sets Credential provider value on config's LoadOptions. If credentials provider is set to nil, the credentials provider value will be ignored. If multiple WithBearerAuthTokenProvider calls are made, the last call overrides the previous call values.
func WithClientLogMode(v aws.ClientLogMode) LoadOptionsFunc
WithClientLogMode is a helper function to construct functional options that sets client log mode on LoadOptions. If client log mode is set to nil, the client log mode value will be ignored. If multiple WithClientLogMode calls are made, the last call overrides the previous call values.
func WithCredentialsCacheOptions(v func(*aws.CredentialsCacheOptions)) LoadOptionsFunc
WithCredentialsCacheOptions is a helper function to construct functional options that sets a function to modify the aws.CredentialsCacheOptions the aws.CredentialsCache will be configured with, if the CredentialsCache is used by the configuration loader.
If multiple WithCredentialsCacheOptions calls are made, the last call overrides the previous call values.
▹ Example
func WithCredentialsProvider(v aws.CredentialsProvider) LoadOptionsFunc
WithCredentialsProvider is a helper function to construct functional options that sets Credential provider value on config's LoadOptions. If credentials provider is set to nil, the credentials provider value will be ignored. If multiple WithCredentialsProvider calls are made, the last call overrides the previous call values.
▹ Example
func WithCustomCABundle(v io.Reader) LoadOptionsFunc
WithCustomCABundle is a helper function to construct functional options that sets CustomCABundle on config's LoadOptions. Setting the custom CA Bundle to nil will result in custom CA Bundle value being ignored. If multiple WithCustomCABundle calls are made, the last call overrides the previous call values.
func WithDefaultRegion(v string) LoadOptionsFunc
WithDefaultRegion is a helper function to construct functional options that sets a DefaultRegion on config's LoadOptions. Setting the default region to an empty string, will result in the default region value being ignored. If multiple WithDefaultRegion calls are made, the last call overrides the previous call values. Note that both WithRegion and WithEC2IMDSRegion call takes precedence over WithDefaultRegion call when resolving region.
func WithDefaultsMode(mode aws.DefaultsMode, optFns ...func(options *DefaultsModeOptions)) LoadOptionsFunc
WithDefaultsMode sets the SDK defaults configuration mode to the value provided.
Zero or more functional options can be provided to provide configuration options for performing environment discovery when using aws.DefaultsModeAuto.
func WithDisableRequestCompression(DisableRequestCompression *bool) LoadOptionsFunc
WithDisableRequestCompression is a helper function to construct functional options that sets DisableRequestCompression on config's LoadOptions.
func WithEC2IMDSClientEnableState(v imds.ClientEnableState) LoadOptionsFunc
WithEC2IMDSClientEnableState is a helper function to construct functional options that sets the EC2IMDSClientEnableState.
func WithEC2IMDSEndpoint(v string) LoadOptionsFunc
WithEC2IMDSEndpoint is a helper function to construct functional options that sets the EC2IMDSEndpoint.
func WithEC2IMDSEndpointMode(v imds.EndpointModeState) LoadOptionsFunc
WithEC2IMDSEndpointMode is a helper function to construct functional options that sets the EC2IMDSEndpointMode.
func WithEC2IMDSRegion(fnOpts ...func(o *UseEC2IMDSRegion)) LoadOptionsFunc
WithEC2IMDSRegion is a helper function to construct functional options that enables resolving EC2IMDS region. The function takes in a UseEC2IMDSRegion functional option, and can be used to set the EC2IMDS client which will be used to resolve EC2IMDSRegion. If no functional option is provided, an EC2IMDS client is built and used by the resolver. If multiple WithEC2IMDSRegion calls are made, the last call overrides the previous call values. Note that the WithRegion calls takes precedence over WithEC2IMDSRegion when resolving region.
▹ Example
func WithEC2RoleCredentialOptions(v func(*ec2rolecreds.Options)) LoadOptionsFunc
WithEC2RoleCredentialOptions is a helper function to construct functional options that sets a function to use ec2rolecreds.Options on config's LoadOptions. If EC2 role credential options is set to nil, the EC2 role credential options value will be ignored. If multiple WithEC2RoleCredentialOptions calls are made, the last call overrides the previous call values.
func WithEndpointCredentialOptions(v func(*endpointcreds.Options)) LoadOptionsFunc
WithEndpointCredentialOptions is a helper function to construct functional options that sets a function to use endpointcreds.Options on config's LoadOptions. If endpoint credential options is set to nil, the endpoint credential options value will be ignored. If multiple WithEndpointCredentialOptions calls are made, the last call overrides the previous call values.
func WithEndpointDiscovery(v aws.EndpointDiscoveryEnableState) LoadOptionsFunc
WithEndpointDiscovery is a helper function to construct functional options that can be used to enable endpoint discovery on LoadOptions for supported clients. If multiple WithEndpointDiscovery calls are made, the last call overrides the previous call values.
func WithEndpointResolver(v aws.EndpointResolver) LoadOptionsFunc
WithEndpointResolver is a helper function to construct functional options that sets the EndpointResolver on LoadOptions. If the EndpointResolver is set to nil, the EndpointResolver value is ignored. If multiple WithEndpointResolver calls are made, the last call overrides the previous call values.
Deprecated: See WithEndpointResolverWithOptions
▹ Example
func WithEndpointResolverWithOptions(v aws.EndpointResolverWithOptions) LoadOptionsFunc
WithEndpointResolverWithOptions is a helper function to construct functional options that sets the EndpointResolverWithOptions on LoadOptions. If the EndpointResolverWithOptions is set to nil, the EndpointResolver value is ignored. If multiple WithEndpointResolver calls are made, the last call overrides the previous call values.
▹ Example
func WithHTTPClient(v HTTPClient) LoadOptionsFunc
WithHTTPClient is a helper function to construct functional options that sets HTTPClient on LoadOptions. If HTTPClient is set to nil, the HTTPClient value will be ignored. If multiple WithHTTPClient calls are made, the last call overrides the previous call values.
▹ Example
func WithLogConfigurationWarnings(v bool) LoadOptionsFunc
WithLogConfigurationWarnings is a helper function to construct functional options that can be used to set LogConfigurationWarnings on LoadOptions.
If multiple WithLogConfigurationWarnings calls are made, the last call overrides the previous call values.
func WithLogger(v logging.Logger) LoadOptionsFunc
WithLogger is a helper function to construct functional options that sets Logger on LoadOptions. If Logger is set to nil, the Logger value will be ignored. If multiple WithLogger calls are made, the last call overrides the previous call values.
func WithProcessCredentialOptions(v func(*processcreds.Options)) LoadOptionsFunc
WithProcessCredentialOptions is a helper function to construct functional options that sets a function to use processcreds.Options on config's LoadOptions. If process credential options is set to nil, the process credential value will be ignored. If multiple WithProcessCredentialOptions calls are made, the last call overrides the previous call values.
func WithRegion(v string) LoadOptionsFunc
WithRegion is a helper function to construct functional options that sets Region on config's LoadOptions. Setting the region to an empty string, will result in the region value being ignored. If multiple WithRegion calls are made, the last call overrides the previous call values.
▹ Example
func WithRequestMinCompressSizeBytes(RequestMinCompressSizeBytes *int64) LoadOptionsFunc
WithRequestMinCompressSizeBytes is a helper function to construct functional options that sets RequestMinCompressSizeBytes on config's LoadOptions.
func WithRetryMaxAttempts(v int) LoadOptionsFunc
WithRetryMaxAttempts is a helper function to construct functional options that sets RetryMaxAttempts on LoadOptions. If RetryMaxAttempts is unset, the RetryMaxAttempts value is ignored. If multiple WithRetryMaxAttempts calls are made, the last call overrides the previous call values.
Will be ignored of LoadOptions.Retryer or WithRetryer are used.
func WithRetryMode(v aws.RetryMode) LoadOptionsFunc
WithRetryMode is a helper function to construct functional options that sets RetryMode on LoadOptions. If RetryMode is unset, the RetryMode value is ignored. If multiple WithRetryMode calls are made, the last call overrides the previous call values.
Will be ignored of LoadOptions.Retryer or WithRetryer are used.
func WithRetryer(v func() aws.Retryer) LoadOptionsFunc
WithRetryer is a helper function to construct functional options that sets Retryer on LoadOptions. If Retryer is set to nil, the Retryer value is ignored. If multiple WithRetryer calls are made, the last call overrides the previous call values.
func WithS3DisableExpressAuth(v bool) LoadOptionsFunc
WithS3DisableExpressAuth sets [LoadOptions.S3DisableExpressAuth] to the value provided.
func WithS3DisableMultiRegionAccessPoints(v bool) LoadOptionsFunc
WithS3DisableMultiRegionAccessPoints is a helper function to construct functional options that can be used to set S3DisableMultiRegionAccessPoints on LoadOptions. If multiple WithS3DisableMultiRegionAccessPoints calls are made, the last call overrides the previous call values.
func WithS3UseARNRegion(v bool) LoadOptionsFunc
WithS3UseARNRegion is a helper function to construct functional options that can be used to set S3UseARNRegion on LoadOptions. If multiple WithS3UseARNRegion calls are made, the last call overrides the previous call values.
func WithSSOProviderOptions(v func(*ssocreds.Options)) LoadOptionsFunc
WithSSOProviderOptions is a helper function to construct functional options that sets a function to use ssocreds.Options on config's LoadOptions. If the SSO credential provider options is set to nil, the sso provider options value will be ignored. If multiple WithSSOProviderOptions calls are made, the last call overrides the previous call values.
func WithSSOTokenProviderOptions(v func(*ssocreds.SSOTokenProviderOptions)) LoadOptionsFunc
WithSSOTokenProviderOptions is a helper function to construct functional options that sets a function to modify the SSOtokenProviderOptions the SDK's credentials/ssocreds#SSOProvider will be configured with, if the SSOTokenProvider is used by the configuration loader.
If multiple WithSSOTokenProviderOptions calls are made, the last call overrides the previous call values.
func WithSharedConfigFiles(v []string) LoadOptionsFunc
WithSharedConfigFiles is a helper function to construct functional options that sets slice of SharedConfigFiles on config's LoadOptions. Setting the shared config files to an nil string slice, will result in the shared config files value being ignored. If multiple WithSharedConfigFiles calls are made, the last call overrides the previous call values.
func WithSharedConfigProfile(v string) LoadOptionsFunc
WithSharedConfigProfile is a helper function to construct functional options that sets SharedConfigProfile on config's LoadOptions. Setting the shared config profile to an empty string, will result in the shared config profile value being ignored. If multiple WithSharedConfigProfile calls are made, the last call overrides the previous call values.
func WithSharedCredentialsFiles(v []string) LoadOptionsFunc
WithSharedCredentialsFiles is a helper function to construct functional options that sets slice of SharedCredentialsFiles on config's LoadOptions. Setting the shared credentials files to an nil string slice, will result in the shared credentials files value being ignored. If multiple WithSharedCredentialsFiles calls are made, the last call overrides the previous call values.
func WithUseDualStackEndpoint(v aws.DualStackEndpointState) LoadOptionsFunc
WithUseDualStackEndpoint is a helper function to construct functional options that can be used to set UseDualStackEndpoint on LoadOptions.
func WithUseFIPSEndpoint(v aws.FIPSEndpointState) LoadOptionsFunc
WithUseFIPSEndpoint is a helper function to construct functional options that can be used to set UseFIPSEndpoint on LoadOptions.
func WithWebIdentityRoleCredentialOptions(v func(*stscreds.WebIdentityRoleOptions)) LoadOptionsFunc
WithWebIdentityRoleCredentialOptions is a helper function to construct functional options that sets a function to use stscreds.WebIdentityRoleOptions on config's LoadOptions. If web identity role credentials options is set to nil, the web identity role credentials value will be ignored. If multiple WithWebIdentityRoleCredentialOptions calls are made, the last call overrides the previous call values.
▹ Example
LoadSharedConfigOptions struct contains optional values that can be used to load the config.
type LoadSharedConfigOptions struct { // CredentialsFiles are the shared credentials files CredentialsFiles []string // ConfigFiles are the shared config files ConfigFiles []string // Logger is the logger used to log shared config behavior Logger logging.Logger }
SSOSession provides the shared configuration parameters of the sso-session section.
type SSOSession struct { Name string SSORegion string SSOStartURL string }
Services contains values configured in the services section of the AWS configuration file.
type Services struct { // Services section values // {"serviceId": {"key": "value"}} // e.g. {"s3": {"endpoint_url": "example.com"}} ServiceValues map[string]map[string]string }
SharedConfig represents the configuration fields of the SDK config files.
type SharedConfig struct { Profile string // Credentials values from the config file. Both aws_access_key_id // and aws_secret_access_key must be provided together in the same file // to be considered valid. The values will be ignored if not a complete group. // aws_session_token is an optional field that can be provided if both of the // other two fields are also provided. // // aws_access_key_id // aws_secret_access_key // aws_session_token Credentials aws.Credentials CredentialSource string CredentialProcess string WebIdentityTokenFile string // SSO session options SSOSessionName string SSOSession *SSOSession // Legacy SSO session options SSORegion string SSOStartURL string // SSO fields not used SSOAccountID string SSORoleName string RoleARN string ExternalID string MFASerial string RoleSessionName string RoleDurationSeconds *time.Duration SourceProfileName string Source *SharedConfig // Region is the region the SDK should use for looking up AWS service endpoints // and signing requests. // // region = us-west-2 Region string // EnableEndpointDiscovery can be enabled or disabled in the shared config // by setting endpoint_discovery_enabled to true, or false respectively. // // endpoint_discovery_enabled = true EnableEndpointDiscovery aws.EndpointDiscoveryEnableState // Specifies if the S3 service should allow ARNs to direct the region // the client's requests are sent to. // // s3_use_arn_region=true S3UseARNRegion *bool // Specifies the EC2 Instance Metadata Service default endpoint selection // mode (IPv4 or IPv6) // // ec2_metadata_service_endpoint_mode=IPv6 EC2IMDSEndpointMode imds.EndpointModeState // Specifies the EC2 Instance Metadata Service endpoint to use. If // specified it overrides EC2IMDSEndpointMode. // // ec2_metadata_service_endpoint=http://fd00:ec2::254 EC2IMDSEndpoint string // Specifies that IMDS clients should not fallback to IMDSv1 if token // requests fail. // // ec2_metadata_v1_disabled=true EC2IMDSv1Disabled *bool // Specifies if the S3 service should disable support for Multi-Region // access-points // // s3_disable_multiregion_access_points=true S3DisableMultiRegionAccessPoints *bool // Specifies that SDK clients must resolve a dual-stack endpoint for // services. // // use_dualstack_endpoint=true UseDualStackEndpoint aws.DualStackEndpointState // Specifies that SDK clients must resolve a FIPS endpoint for // services. // // use_fips_endpoint=true UseFIPSEndpoint aws.FIPSEndpointState // Specifies which defaults mode should be used by services. // // defaults_mode=standard DefaultsMode aws.DefaultsMode // Specifies the maximum number attempts an API client will call an // operation that fails with a retryable error. // // max_attempts=3 RetryMaxAttempts int // Specifies the retry model the API client will be created with. // // retry_mode=standard RetryMode aws.RetryMode // Sets the path to a custom Credentials Authority (CA) Bundle PEM file // that the SDK will use instead of the system's root CA bundle. Only use // this if you want to configure the SDK to use a custom set of CAs. // // Enabling this option will attempt to merge the Transport into the SDK's // HTTP client. If the client's Transport is not a http.Transport an error // will be returned. If the Transport's TLS config is set this option will // cause the SDK to overwrite the Transport's TLS config's RootCAs value. // // Setting a custom HTTPClient in the aws.Config options will override this // setting. To use this option and custom HTTP client, the HTTP client // needs to be provided when creating the config. Not the service client. // // ca_bundle=$HOME/my_custom_ca_bundle CustomCABundle string // aws sdk app ID that can be added to user agent header string AppID string // Flag used to disable configured endpoints. IgnoreConfiguredEndpoints *bool // Value to contain configured endpoints to be propagated to // corresponding endpoint resolution field. BaseEndpoint string // Services section config. ServicesSectionName string Services Services // determine if request compression is allowed, default to false // retrieved from config file's profile field disable_request_compression DisableRequestCompression *bool // inclusive threshold request body size to trigger compression, // default to 10240 and must be within 0 and 10485760 bytes inclusive // retrieved from config file's profile field request_min_compression_size_bytes RequestMinCompressSizeBytes *int64 // Whether S3Express auth is disabled. // // This will NOT prevent requests from being made to S3Express buckets, it // will only bypass the modified endpoint routing and signing behaviors // associated with the feature. S3DisableExpressAuth *bool }
func LoadSharedConfigProfile(ctx context.Context, profile string, optFns ...func(*LoadSharedConfigOptions)) (SharedConfig, error)
LoadSharedConfigProfile retrieves the configuration from the list of files using the profile provided. The order the files are listed will determine precedence. Values in subsequent files will overwrite values defined in earlier files.
For example, given two files A and B. Both define credentials. If the order of the files are A then B, B's credential values will be used instead of A's.
If config files are not set, SDK will default to using a file at location `.aws/config` if present. If credentials files are not set, SDK will default to using a file at location `.aws/credentials` if present. No default files are set, if files set to an empty slice.
You can read more about shared config and credentials file location at https://docs.aws.amazon.com/credref/latest/refdocs/file-location.html#file-location
func (c SharedConfig) GetEC2IMDSEndpoint() (string, bool, error)
GetEC2IMDSEndpoint implements a EC2IMDSEndpoint option resolver interface.
func (c SharedConfig) GetEC2IMDSEndpointMode() (imds.EndpointModeState, bool, error)
GetEC2IMDSEndpointMode implements a EC2IMDSEndpointMode option resolver interface.
func (c SharedConfig) GetEC2IMDSV1FallbackDisabled() (bool, bool)
GetEC2IMDSV1FallbackDisabled implements an EC2IMDSV1FallbackDisabled option resolver interface.
func (c SharedConfig) GetEnableEndpointDiscovery(ctx context.Context) (value aws.EndpointDiscoveryEnableState, ok bool, err error)
GetEnableEndpointDiscovery returns if the enable_endpoint_discovery is set.
func (c SharedConfig) GetIgnoreConfiguredEndpoints(context.Context) (bool, bool, error)
GetIgnoreConfiguredEndpoints is used in knowing when to disable configured endpoints feature.
func (c SharedConfig) GetRetryMaxAttempts(ctx context.Context) (value int, ok bool, err error)
GetRetryMaxAttempts returns the maximum number of attempts an API client created Retryer should attempt an operation call before failing.
func (c SharedConfig) GetRetryMode(ctx context.Context) (value aws.RetryMode, ok bool, err error)
GetRetryMode returns the model the API client should create its Retryer in.
func (c SharedConfig) GetS3DisableExpressAuth() (value, ok bool)
GetS3DisableExpressAuth returns the configured value for [SharedConfig.S3DisableExpressAuth].
func (c SharedConfig) GetS3DisableMultiRegionAccessPoints(ctx context.Context) (value, ok bool, err error)
GetS3DisableMultiRegionAccessPoints returns if the S3 service should disable support for Multi-Region access-points.
func (c SharedConfig) GetS3UseARNRegion(ctx context.Context) (value, ok bool, err error)
GetS3UseARNRegion returns if the S3 service should allow ARNs to direct the region the client's requests are sent to.
func (c SharedConfig) GetServiceBaseEndpoint(ctx context.Context, sdkID string) (string, bool, error)
GetServiceBaseEndpoint is used to retrieve a normalized SDK ID for use with configured endpoints.
func (c SharedConfig) GetUseDualStackEndpoint(ctx context.Context) (value aws.DualStackEndpointState, found bool, err error)
GetUseDualStackEndpoint returns whether the service's dual-stack endpoint should be used for requests.
func (c SharedConfig) GetUseFIPSEndpoint(ctx context.Context) (value aws.FIPSEndpointState, found bool, err error)
GetUseFIPSEndpoint returns whether the service's FIPS endpoint should be used for requests.
SharedConfigAssumeRoleError is an error for the shared config when the profile contains assume role information, but that information is invalid or not complete.
type SharedConfigAssumeRoleError struct { Profile string RoleARN string Err error }
func (e SharedConfigAssumeRoleError) Error() string
func (e SharedConfigAssumeRoleError) Unwrap() error
Unwrap returns the underlying error that caused the failure.
SharedConfigLoadError is an error for the shared config file failed to load.
type SharedConfigLoadError struct { Filename string Err error }
func (e SharedConfigLoadError) Error() string
func (e SharedConfigLoadError) Unwrap() error
Unwrap returns the underlying error that caused the failure.
SharedConfigProfileNotExistError is an error for the shared config when the profile was not find in the config file.
type SharedConfigProfileNotExistError struct { Filename []string Profile string Err error }
func (e SharedConfigProfileNotExistError) Error() string
func (e SharedConfigProfileNotExistError) Unwrap() error
Unwrap returns the underlying error that caused the failure.
UseEC2IMDSRegion provides a regionProvider that retrieves the region from the EC2 Metadata service.
type UseEC2IMDSRegion struct { // If unset will default to generic EC2 IMDS client. Client *imds.Client }