Bumps [github.com/aws/aws-sdk-go-v2/credentials](https://github.com/aws/aws-sdk-go-v2) from 1.17.16 to 1.17.24. - [Release notes](https://github.com/aws/aws-sdk-go-v2/releases) - [Commits](https://github.com/aws/aws-sdk-go-v2/compare/credentials/v1.17.16...credentials/v1.17.24) --- updated-dependencies: - dependency-name: github.com/aws/aws-sdk-go-v2/credentials dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
779 B
Go
18 lines
779 B
Go
package aws
|
|
|
|
// AccountIDEndpointMode controls how a resolved AWS account ID is handled for endpoint routing.
|
|
type AccountIDEndpointMode string
|
|
|
|
const (
|
|
// AccountIDEndpointModeUnset indicates the AWS account ID will not be used for endpoint routing
|
|
AccountIDEndpointModeUnset AccountIDEndpointMode = ""
|
|
|
|
// AccountIDEndpointModePreferred indicates the AWS account ID will be used for endpoint routing if present
|
|
AccountIDEndpointModePreferred = "preferred"
|
|
|
|
// AccountIDEndpointModeRequired indicates an error will be returned if the AWS account ID is not resolved from identity
|
|
AccountIDEndpointModeRequired = "required"
|
|
|
|
// AccountIDEndpointModeDisabled indicates the AWS account ID will be ignored during endpoint routing
|
|
AccountIDEndpointModeDisabled = "disabled"
|
|
)
|