#[non_exhaustive]pub struct CreateEvaluationInput { /* private fields */ }
Implementations§
source§impl CreateEvaluationInput
impl CreateEvaluationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateEvaluation, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateEvaluation, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateEvaluation
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateEvaluationInput
.
source§impl CreateEvaluationInput
impl CreateEvaluationInput
sourcepub fn evaluation_id(&self) -> Option<&str>
pub fn evaluation_id(&self) -> Option<&str>
A user-supplied ID that uniquely identifies the Evaluation
.
sourcepub fn evaluation_name(&self) -> Option<&str>
pub fn evaluation_name(&self) -> Option<&str>
A user-supplied name or description of the Evaluation
.
sourcepub fn ml_model_id(&self) -> Option<&str>
pub fn ml_model_id(&self) -> Option<&str>
The ID of the MLModel
to evaluate.
The schema used in creating the MLModel
must match the schema of the DataSource
used in the Evaluation
.
sourcepub fn evaluation_data_source_id(&self) -> Option<&str>
pub fn evaluation_data_source_id(&self) -> Option<&str>
The ID of the DataSource
for the evaluation. The schema of the DataSource
must match the schema used to create the MLModel
.
Trait Implementations§
source§impl Clone for CreateEvaluationInput
impl Clone for CreateEvaluationInput
source§fn clone(&self) -> CreateEvaluationInput
fn clone(&self) -> CreateEvaluationInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CreateEvaluationInput
impl Debug for CreateEvaluationInput
source§impl PartialEq<CreateEvaluationInput> for CreateEvaluationInput
impl PartialEq<CreateEvaluationInput> for CreateEvaluationInput
source§fn eq(&self, other: &CreateEvaluationInput) -> bool
fn eq(&self, other: &CreateEvaluationInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.