pub struct Builder { /* private fields */ }
Expand description
A builder for GetEvaluationInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn evaluation_id(self, input: impl Into<String>) -> Self
pub fn evaluation_id(self, input: impl Into<String>) -> Self
The ID of the Evaluation
to retrieve. The evaluation of each MLModel
is recorded and cataloged. The ID provides the means to access the information.
sourcepub fn set_evaluation_id(self, input: Option<String>) -> Self
pub fn set_evaluation_id(self, input: Option<String>) -> Self
The ID of the Evaluation
to retrieve. The evaluation of each MLModel
is recorded and cataloged. The ID provides the means to access the information.
sourcepub fn build(self) -> Result<GetEvaluationInput, BuildError>
pub fn build(self) -> Result<GetEvaluationInput, BuildError>
Consumes the builder and constructs a GetEvaluationInput
.