pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateEvaluationInput
.
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 assigned to the Evaluation
during creation.
sourcepub fn set_evaluation_id(self, input: Option<String>) -> Self
pub fn set_evaluation_id(self, input: Option<String>) -> Self
The ID assigned to the Evaluation
during creation.
sourcepub fn evaluation_name(self, input: impl Into<String>) -> Self
pub fn evaluation_name(self, input: impl Into<String>) -> Self
A new user-supplied name or description of the Evaluation
that will replace the current content.
sourcepub fn set_evaluation_name(self, input: Option<String>) -> Self
pub fn set_evaluation_name(self, input: Option<String>) -> Self
A new user-supplied name or description of the Evaluation
that will replace the current content.
sourcepub fn build(self) -> Result<UpdateEvaluationInput, BuildError>
pub fn build(self) -> Result<UpdateEvaluationInput, BuildError>
Consumes the builder and constructs a UpdateEvaluationInput
.