@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum TargetDatabaseEngine extends Enum<TargetDatabaseEngine>
Enum Constant and Description |
---|
AmazonAurora |
AWSPostgreSQL |
Db2LUW |
MariaDB |
MicrosoftSQLServer |
MongoDB |
MySQL |
NoneSpecified |
OracleDatabase |
SAP |
Modifier and Type | Method and Description |
---|---|
static TargetDatabaseEngine |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static TargetDatabaseEngine |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TargetDatabaseEngine[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TargetDatabaseEngine NoneSpecified
public static final TargetDatabaseEngine AmazonAurora
public static final TargetDatabaseEngine AWSPostgreSQL
public static final TargetDatabaseEngine MySQL
public static final TargetDatabaseEngine MicrosoftSQLServer
public static final TargetDatabaseEngine OracleDatabase
public static final TargetDatabaseEngine MariaDB
public static final TargetDatabaseEngine SAP
public static final TargetDatabaseEngine Db2LUW
public static final TargetDatabaseEngine MongoDB
public static TargetDatabaseEngine[] values()
for (TargetDatabaseEngine c : TargetDatabaseEngine.values()) System.out.println(c);
public static TargetDatabaseEngine 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<TargetDatabaseEngine>
public static TargetDatabaseEngine fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.