@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum ExportSourceType extends Enum<ExportSourceType>
The type of data source of an export, can be one of the following:
METRICS_DATA
- The metrics export.
MESSAGE_INSIGHTS
- The Message Insights export.
Enum Constant and Description |
---|
MESSAGE_INSIGHTS |
METRICS_DATA |
Modifier and Type | Method and Description |
---|---|
static ExportSourceType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static ExportSourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExportSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportSourceType METRICS_DATA
public static final ExportSourceType MESSAGE_INSIGHTS
public static ExportSourceType[] values()
for (ExportSourceType c : ExportSourceType.values()) System.out.println(c);
public static ExportSourceType 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<ExportSourceType>
public static ExportSourceType fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.