public enum DataSourceFilterVariable extends Enum<DataSourceFilterVariable>
A list of the variables to use in searching or filtering
DataSource
.
CreatedAt
- Sets the search criteria to
DataSource
creation date.Status
- Sets the search criteria to DataSource
status.Name
- Sets the search criteria to the contents of
DataSource
Name
.DataUri
- Sets the search criteria to the URI of data files
used to create the DataSource
. The URI can identify either a
file or an Amazon Simple Storage Service (Amazon S3) bucket or directory.IAMUser
- Sets the search criteria to the user account that
invoked the DataSource
creation.
The variable names should match the variable names in the
DataSource
.
Enum Constant and Description |
---|
CreatedAt |
DataLocationS3 |
IAMUser |
LastUpdatedAt |
Name |
Status |
Modifier and Type | Method and Description |
---|---|
static DataSourceFilterVariable |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static DataSourceFilterVariable |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataSourceFilterVariable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSourceFilterVariable CreatedAt
public static final DataSourceFilterVariable LastUpdatedAt
public static final DataSourceFilterVariable Status
public static final DataSourceFilterVariable Name
public static final DataSourceFilterVariable DataLocationS3
public static final DataSourceFilterVariable IAMUser
public static DataSourceFilterVariable[] values()
for (DataSourceFilterVariable c : DataSourceFilterVariable.values()) System.out.println(c);
public static DataSourceFilterVariable 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<DataSourceFilterVariable>
public static DataSourceFilterVariable fromValue(String value)
value
- real valueCopyright © 2018. All rights reserved.