Struct aws_sdk_machinelearning::operation::update_ml_model::builders::UpdateMlModelInputBuilder
source · #[non_exhaustive]pub struct UpdateMlModelInputBuilder { /* private fields */ }
Expand description
A builder for UpdateMlModelInput
.
Implementations§
source§impl UpdateMlModelInputBuilder
impl UpdateMlModelInputBuilder
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
during 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
during creation.
sourcepub fn get_ml_model_id(&self) -> &Option<String>
pub fn get_ml_model_id(&self) -> &Option<String>
The ID assigned to the MLModel
during creation.
sourcepub fn ml_model_name(self, input: impl Into<String>) -> Self
pub fn ml_model_name(self, input: impl Into<String>) -> Self
A user-supplied name or description of the MLModel
.
sourcepub fn set_ml_model_name(self, input: Option<String>) -> Self
pub fn set_ml_model_name(self, input: Option<String>) -> Self
A user-supplied name or description of the MLModel
.
sourcepub fn get_ml_model_name(&self) -> &Option<String>
pub fn get_ml_model_name(&self) -> &Option<String>
A user-supplied name or description of the MLModel
.
sourcepub fn score_threshold(self, input: f32) -> Self
pub fn score_threshold(self, input: f32) -> Self
The ScoreThreshold
used in binary classification MLModel
that marks the boundary between a positive prediction and a negative prediction.
Output values greater than or equal to the ScoreThreshold
receive a positive result from the MLModel
, such as true
. Output values less than the ScoreThreshold
receive a negative response from the MLModel
, such as false
.
sourcepub fn set_score_threshold(self, input: Option<f32>) -> Self
pub fn set_score_threshold(self, input: Option<f32>) -> Self
The ScoreThreshold
used in binary classification MLModel
that marks the boundary between a positive prediction and a negative prediction.
Output values greater than or equal to the ScoreThreshold
receive a positive result from the MLModel
, such as true
. Output values less than the ScoreThreshold
receive a negative response from the MLModel
, such as false
.
sourcepub fn get_score_threshold(&self) -> &Option<f32>
pub fn get_score_threshold(&self) -> &Option<f32>
The ScoreThreshold
used in binary classification MLModel
that marks the boundary between a positive prediction and a negative prediction.
Output values greater than or equal to the ScoreThreshold
receive a positive result from the MLModel
, such as true
. Output values less than the ScoreThreshold
receive a negative response from the MLModel
, such as false
.
sourcepub fn build(self) -> Result<UpdateMlModelInput, BuildError>
pub fn build(self) -> Result<UpdateMlModelInput, BuildError>
Consumes the builder and constructs a UpdateMlModelInput
.
source§impl UpdateMlModelInputBuilder
impl UpdateMlModelInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateMlModelOutput, SdkError<UpdateMLModelError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateMlModelOutput, SdkError<UpdateMLModelError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateMlModelInputBuilder
impl Clone for UpdateMlModelInputBuilder
source§fn clone(&self) -> UpdateMlModelInputBuilder
fn clone(&self) -> UpdateMlModelInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateMlModelInputBuilder
impl Debug for UpdateMlModelInputBuilder
source§impl Default for UpdateMlModelInputBuilder
impl Default for UpdateMlModelInputBuilder
source§fn default() -> UpdateMlModelInputBuilder
fn default() -> UpdateMlModelInputBuilder
source§impl PartialEq for UpdateMlModelInputBuilder
impl PartialEq for UpdateMlModelInputBuilder
source§fn eq(&self, other: &UpdateMlModelInputBuilder) -> bool
fn eq(&self, other: &UpdateMlModelInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.