Enum BatchPredictionFilterVariable
- java.lang.Object
-
- java.lang.Enum<BatchPredictionFilterVariable>
-
- com.amazonaws.services.machinelearning.model.BatchPredictionFilterVariable
-
- All Implemented Interfaces:
Serializable
,Comparable<BatchPredictionFilterVariable>
public enum BatchPredictionFilterVariable extends Enum<BatchPredictionFilterVariable>
A list of the variables to use in searching or filtering
BatchPrediction
.-
CreatedAt
- Sets the search criteria toBatchPrediction
creation date. -
Status
- Sets the search criteria toBatchPrediction
status. -
Name
- Sets the search criteria to the contents ofBatchPrediction
Name
. -
IAMUser
- Sets the search criteria to the user account that invoked theBatchPrediction
creation. -
MLModelId
- Sets the search criteria to theMLModel
used in theBatchPrediction
. -
DataSourceId
- Sets the search criteria to theDataSource
used in theBatchPrediction
. -
DataURI
- Sets the search criteria to the data file(s) used in theBatchPrediction
. The URL can identify either a file or an Amazon Simple Storage Service (Amazon S3) bucket or directory.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CreatedAt
DataSourceId
DataURI
IAMUser
LastUpdatedAt
MLModelId
Name
Status
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BatchPredictionFilterVariable
fromValue(String value)
Use this in place of valueOf.String
toString()
static BatchPredictionFilterVariable
valueOf(String name)
Returns the enum constant of this type with the specified name.static BatchPredictionFilterVariable[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CreatedAt
public static final BatchPredictionFilterVariable CreatedAt
-
LastUpdatedAt
public static final BatchPredictionFilterVariable LastUpdatedAt
-
Status
public static final BatchPredictionFilterVariable Status
-
Name
public static final BatchPredictionFilterVariable Name
-
IAMUser
public static final BatchPredictionFilterVariable IAMUser
-
MLModelId
public static final BatchPredictionFilterVariable MLModelId
-
DataSourceId
public static final BatchPredictionFilterVariable DataSourceId
-
DataURI
public static final BatchPredictionFilterVariable DataURI
-
-
Method Detail
-
values
public static BatchPredictionFilterVariable[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BatchPredictionFilterVariable c : BatchPredictionFilterVariable.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BatchPredictionFilterVariable 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 nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<BatchPredictionFilterVariable>
-
fromValue
public static BatchPredictionFilterVariable fromValue(String value)
Use this in place of valueOf.- Parameters:
value
- real value- Returns:
- BatchPredictionFilterVariable corresponding to the value
-
-