1package aws
2
3// AccountIDEndpointMode controls how a resolved AWS account ID is handled for endpoint routing.
4type AccountIDEndpointMode string
5
6const (
7 // AccountIDEndpointModeUnset indicates the AWS account ID will not be used for endpoint routing
8 AccountIDEndpointModeUnset AccountIDEndpointMode = ""
9
10 // AccountIDEndpointModePreferred indicates the AWS account ID will be used for endpoint routing if present
11 AccountIDEndpointModePreferred = "preferred"
12
13 // AccountIDEndpointModeRequired indicates an error will be returned if the AWS account ID is not resolved from identity
14 AccountIDEndpointModeRequired = "required"
15
16 // AccountIDEndpointModeDisabled indicates the AWS account ID will be ignored during endpoint routing
17 AccountIDEndpointModeDisabled = "disabled"
18)