Class CreateEvaluationRequest
- java.lang.Object
-
- com.amazonaws.AmazonWebServiceRequest
-
- com.amazonaws.services.machinelearning.model.CreateEvaluationRequest
-
- All Implemented Interfaces:
ReadLimitInfo
,Serializable
,Cloneable
public class CreateEvaluationRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.amazonaws.AmazonWebServiceRequest
NOOP
-
-
Constructor Summary
Constructors Constructor Description CreateEvaluationRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CreateEvaluationRequest
clone()
Creates a shallow clone of this request.boolean
equals(Object obj)
String
getEvaluationDataSourceId()
The ID of theDataSource
for the evaluation.String
getEvaluationId()
A user-supplied ID that uniquely identifies theEvaluation
.String
getEvaluationName()
A user-supplied name or description of theEvaluation
.String
getMLModelId()
The ID of theMLModel
to evaluate.int
hashCode()
void
setEvaluationDataSourceId(String evaluationDataSourceId)
The ID of theDataSource
for the evaluation.void
setEvaluationId(String evaluationId)
A user-supplied ID that uniquely identifies theEvaluation
.void
setEvaluationName(String evaluationName)
A user-supplied name or description of theEvaluation
.void
setMLModelId(String mLModelId)
The ID of theMLModel
to evaluate.String
toString()
Returns a string representation of this object; useful for testing and debugging.CreateEvaluationRequest
withEvaluationDataSourceId(String evaluationDataSourceId)
The ID of theDataSource
for the evaluation.CreateEvaluationRequest
withEvaluationId(String evaluationId)
A user-supplied ID that uniquely identifies theEvaluation
.CreateEvaluationRequest
withEvaluationName(String evaluationName)
A user-supplied name or description of theEvaluation
.CreateEvaluationRequest
withMLModelId(String mLModelId)
The ID of theMLModel
to evaluate.-
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyBaseTo, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeout
-
-
-
-
Method Detail
-
setEvaluationId
public void setEvaluationId(String evaluationId)
A user-supplied ID that uniquely identifies the
Evaluation
.- Parameters:
evaluationId
- A user-supplied ID that uniquely identifies theEvaluation
.
-
getEvaluationId
public String getEvaluationId()
A user-supplied ID that uniquely identifies the
Evaluation
.- Returns:
- A user-supplied ID that uniquely identifies the
Evaluation
.
-
withEvaluationId
public CreateEvaluationRequest withEvaluationId(String evaluationId)
A user-supplied ID that uniquely identifies the
Evaluation
.- Parameters:
evaluationId
- A user-supplied ID that uniquely identifies theEvaluation
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setEvaluationName
public void setEvaluationName(String evaluationName)
A user-supplied name or description of the
Evaluation
.- Parameters:
evaluationName
- A user-supplied name or description of theEvaluation
.
-
getEvaluationName
public String getEvaluationName()
A user-supplied name or description of the
Evaluation
.- Returns:
- A user-supplied name or description of the
Evaluation
.
-
withEvaluationName
public CreateEvaluationRequest withEvaluationName(String evaluationName)
A user-supplied name or description of the
Evaluation
.- Parameters:
evaluationName
- A user-supplied name or description of theEvaluation
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setMLModelId
public void setMLModelId(String mLModelId)
The ID of the
MLModel
to evaluate.The schema used in creating the
MLModel
must match the schema of theDataSource
used in theEvaluation
.- Parameters:
mLModelId
- The ID of theMLModel
to evaluate.The schema used in creating the
MLModel
must match the schema of theDataSource
used in theEvaluation
.
-
getMLModelId
public String getMLModelId()
The ID of the
MLModel
to evaluate.The schema used in creating the
MLModel
must match the schema of theDataSource
used in theEvaluation
.- Returns:
- The ID of the
MLModel
to evaluate.The schema used in creating the
MLModel
must match the schema of theDataSource
used in theEvaluation
.
-
withMLModelId
public CreateEvaluationRequest withMLModelId(String mLModelId)
The ID of the
MLModel
to evaluate.The schema used in creating the
MLModel
must match the schema of theDataSource
used in theEvaluation
.- Parameters:
mLModelId
- The ID of theMLModel
to evaluate.The schema used in creating the
MLModel
must match the schema of theDataSource
used in theEvaluation
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setEvaluationDataSourceId
public void setEvaluationDataSourceId(String evaluationDataSourceId)
The ID of the
DataSource
for the evaluation. The schema of theDataSource
must match the schema used to create theMLModel
.- Parameters:
evaluationDataSourceId
- The ID of theDataSource
for the evaluation. The schema of theDataSource
must match the schema used to create theMLModel
.
-
getEvaluationDataSourceId
public String getEvaluationDataSourceId()
The ID of the
DataSource
for the evaluation. The schema of theDataSource
must match the schema used to create theMLModel
.- Returns:
- The ID of the
DataSource
for the evaluation. The schema of theDataSource
must match the schema used to create theMLModel
.
-
withEvaluationDataSourceId
public CreateEvaluationRequest withEvaluationDataSourceId(String evaluationDataSourceId)
The ID of the
DataSource
for the evaluation. The schema of theDataSource
must match the schema used to create theMLModel
.- Parameters:
evaluationDataSourceId
- The ID of theDataSource
for the evaluation. The schema of theDataSource
must match the schema used to create theMLModel
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public CreateEvaluationRequest clone()
Description copied from class:AmazonWebServiceRequest
Creates a shallow clone of this request. Explicitly does not clone the deep structure of the request object.- Overrides:
clone
in classAmazonWebServiceRequest
- See Also:
Object.clone()
-
-