#[non_exhaustive]pub struct CreateEvaluationInput {
pub evaluation_id: Option<String>,
pub evaluation_name: Option<String>,
pub ml_model_id: Option<String>,
pub evaluation_data_source_id: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.evaluation_id: Option<String>
A user-supplied ID that uniquely identifies the Evaluation
.
evaluation_name: Option<String>
A user-supplied name or description of the Evaluation
.
ml_model_id: Option<String>
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
.
evaluation_data_source_id: Option<String>
The ID of the DataSource
for the evaluation. The schema of the DataSource
must match the schema used to create the MLModel
.
Implementations§
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
.
source§impl CreateEvaluationInput
impl CreateEvaluationInput
sourcepub fn builder() -> CreateEvaluationInputBuilder
pub fn builder() -> CreateEvaluationInputBuilder
Creates a new builder-style object to manufacture CreateEvaluationInput
.
Trait Implementations§
source§impl Clone for CreateEvaluationInput
impl Clone for CreateEvaluationInput
source§fn clone(&self) -> CreateEvaluationInput
fn clone(&self) -> CreateEvaluationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateEvaluationInput
impl Debug for CreateEvaluationInput
source§impl PartialEq for CreateEvaluationInput
impl PartialEq for CreateEvaluationInput
source§fn eq(&self, other: &CreateEvaluationInput) -> bool
fn eq(&self, other: &CreateEvaluationInput) -> bool
self
and other
values to be equal, and is used
by ==
.