Enum AccountIdEndpointMode
java.lang.Object
java.lang.Enum<AccountIdEndpointMode>
software.amazon.awssdk.awscore.endpoints.AccountIdEndpointMode
- All Implemented Interfaces:
- Serializable,- Comparable<AccountIdEndpointMode>
Enum Class for AccountId Endpoint Mode.
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionWhen mode is disabled, any resolved account ID will not be used in endpoint construction and rules that reference them will be bypassed.Default value that indicates account ID values will be used in endpoint rules if available.Required mode would be used in scenarios where endpoint resolution should return an error if no account ID is available.
- 
Method SummaryModifier and TypeMethodDescriptionstatic AccountIdEndpointModeReturns the appropriate AccountIdEndpointMode value after parsing the parameter.static AccountIdEndpointModeReturns the enum constant of this type with the specified name.static AccountIdEndpointMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
PREFERREDDefault value that indicates account ID values will be used in endpoint rules if available.
- 
DISABLEDWhen mode is disabled, any resolved account ID will not be used in endpoint construction and rules that reference them will be bypassed.
- 
REQUIREDRequired mode would be used in scenarios where endpoint resolution should return an error if no account ID is available.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
fromValueReturns the appropriate AccountIdEndpointMode value after parsing the parameter.- Parameters:
- s- AccountIdEndpointMode in String Format.
- Returns:
- AccountIdEndpointMode enumValue
- Throws:
- IllegalArgumentException- Unrecognized value for endpoint mode.
 
 
-