Struct aws_sdk_machinelearning::input::get_ml_model_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for GetMlModelInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn ml_model_id(self, input: impl Into<String>) -> Self
pub fn ml_model_id(self, input: impl Into<String>) -> Self
The ID assigned to the MLModel
at creation.
sourcepub fn set_ml_model_id(self, input: Option<String>) -> Self
pub fn set_ml_model_id(self, input: Option<String>) -> Self
The ID assigned to the MLModel
at creation.
sourcepub fn verbose(self, input: bool) -> Self
pub fn verbose(self, input: bool) -> Self
Specifies whether the GetMLModel
operation should return Recipe
.
If true, Recipe
is returned.
If false, Recipe
is not returned.
sourcepub fn set_verbose(self, input: Option<bool>) -> Self
pub fn set_verbose(self, input: Option<bool>) -> Self
Specifies whether the GetMLModel
operation should return Recipe
.
If true, Recipe
is returned.
If false, Recipe
is not returned.
sourcepub fn build(self) -> Result<GetMlModelInput, BuildError>
pub fn build(self) -> Result<GetMlModelInput, BuildError>
Consumes the builder and constructs a GetMlModelInput
.