Enum AccountIdEndpointMode

java.lang.Object
java.lang.Enum<AccountIdEndpointMode>
software.amazon.awssdk.awscore.endpoints.AccountIdEndpointMode
All Implemented Interfaces:
Serializable, Comparable<AccountIdEndpointMode>

public enum AccountIdEndpointMode extends Enum<AccountIdEndpointMode>
Enum Class for AccountId Endpoint Mode.
  • Enum Constant Details

    • PREFERRED

      public static final AccountIdEndpointMode PREFERRED
      Default value that indicates account ID values will be used in endpoint rules if available.
    • DISABLED

      public static final AccountIdEndpointMode DISABLED
      When mode is disabled, any resolved account ID will not be used in endpoint construction and rules that reference them will be bypassed.
    • REQUIRED

      public static final AccountIdEndpointMode REQUIRED
      Required mode would be used in scenarios where endpoint resolution should return an error if no account ID is available.
  • Method Details

    • values

      public static AccountIdEndpointMode[] values()
      Returns 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
    • valueOf

      public static AccountIdEndpointMode valueOf(String name)
      Returns 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
    • fromValue

      public static AccountIdEndpointMode fromValue(String s)
      Returns the appropriate AccountIdEndpointMode value after parsing the parameter.
      Parameters:
      s - AccountIdEndpointMode in String Format.
      Returns:
      AccountIdEndpointMode enumValue
      Throws:
      IllegalArgumentException - Unrecognized value for endpoint mode.