@Generated(value="software.amazon.awssdk:codegen") public enum ClientPasswordAuthType extends Enum<ClientPasswordAuthType>
| Enum Constant and Description |
|---|
MYSQL_NATIVE_PASSWORD |
POSTGRES_MD5 |
POSTGRES_SCRAM_SHA_256 |
SQL_SERVER_AUTHENTICATION |
UNKNOWN_TO_SDK_VERSION |
| Modifier and Type | Method and Description |
|---|---|
static ClientPasswordAuthType |
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.
|
static Set<ClientPasswordAuthType> |
knownValues()
|
String |
toString() |
static ClientPasswordAuthType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientPasswordAuthType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientPasswordAuthType MYSQL_NATIVE_PASSWORD
public static final ClientPasswordAuthType POSTGRES_SCRAM_SHA_256
public static final ClientPasswordAuthType POSTGRES_MD5
public static final ClientPasswordAuthType SQL_SERVER_AUTHENTICATION
public static final ClientPasswordAuthType UNKNOWN_TO_SDK_VERSION
public static ClientPasswordAuthType[] values()
for (ClientPasswordAuthType c : ClientPasswordAuthType.values()) System.out.println(c);
public static ClientPasswordAuthType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<ClientPasswordAuthType>public static ClientPasswordAuthType fromValue(String value)
value - real valuepublic static Set<ClientPasswordAuthType> knownValues()
values() to return a Set of all values known to the SDK. This will return
all known enum values except UNKNOWN_TO_SDK_VERSION.Set of known ClientPasswordAuthTypesCopyright © 2023. All rights reserved.