Enum BatchPredictionFilterVariable
- java.lang.Object
-
- java.lang.Enum<BatchPredictionFilterVariable>
-
- software.amazon.awssdk.services.machinelearning.model.BatchPredictionFilterVariable
-
- All Implemented Interfaces:
Serializable,Comparable<BatchPredictionFilterVariable>
@Generated("software.amazon.awssdk:codegen") public enum BatchPredictionFilterVariable extends Enum<BatchPredictionFilterVariable>
A list of the variables to use in searching or filtering
BatchPrediction.-
CreatedAt- Sets the search criteria toBatchPredictioncreation date. -
Status- Sets the search criteria toBatchPredictionstatus. -
Name- Sets the search criteria to the contents ofBatchPredictionName. -
IAMUser- Sets the search criteria to the user account that invoked theBatchPredictioncreation. -
MLModelId- Sets the search criteria to theMLModelused in theBatchPrediction. -
DataSourceId- Sets the search criteria to theDataSourceused 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 CREATED_ATDATA_SOURCE_IDDATA_URIIAM_USERLAST_UPDATED_ATML_MODEL_IDNAMESTATUSUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BatchPredictionFilterVariablefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<BatchPredictionFilterVariable>knownValues()StringtoString()static BatchPredictionFilterVariablevalueOf(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
-
CREATED_AT
public static final BatchPredictionFilterVariable CREATED_AT
-
LAST_UPDATED_AT
public static final BatchPredictionFilterVariable LAST_UPDATED_AT
-
STATUS
public static final BatchPredictionFilterVariable STATUS
-
NAME
public static final BatchPredictionFilterVariable NAME
-
IAM_USER
public static final BatchPredictionFilterVariable IAM_USER
-
ML_MODEL_ID
public static final BatchPredictionFilterVariable ML_MODEL_ID
-
DATA_SOURCE_ID
public static final BatchPredictionFilterVariable DATA_SOURCE_ID
-
DATA_URI
public static final BatchPredictionFilterVariable DATA_URI
-
UNKNOWN_TO_SDK_VERSION
public static final BatchPredictionFilterVariable UNKNOWN_TO_SDK_VERSION
-
-
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:
toStringin classEnum<BatchPredictionFilterVariable>
-
fromValue
public static BatchPredictionFilterVariable fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- BatchPredictionFilterVariable corresponding to the value
-
knownValues
public static Set<BatchPredictionFilterVariable> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownBatchPredictionFilterVariables
-
-