Struct aws_sdk_machinelearning::operation::update_ml_model::builders::UpdateMLModelFluentBuilder
source · pub struct UpdateMLModelFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateMLModel
.
Updates the MLModelName
and the ScoreThreshold
of an MLModel
.
You can use the GetMLModel
operation to view the contents of the updated data element.
Implementations§
source§impl UpdateMLModelFluentBuilder
impl UpdateMLModelFluentBuilder
sourcepub fn as_input(&self) -> &UpdateMlModelInputBuilder
pub fn as_input(&self) -> &UpdateMlModelInputBuilder
Access the UpdateMLModel as a reference.
sourcepub async fn send(
self
) -> Result<UpdateMlModelOutput, SdkError<UpdateMLModelError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateMlModelOutput, SdkError<UpdateMLModelError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<UpdateMlModelOutput, UpdateMLModelError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateMlModelOutput, UpdateMLModelError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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
.
Trait Implementations§
source§impl Clone for UpdateMLModelFluentBuilder
impl Clone for UpdateMLModelFluentBuilder
source§fn clone(&self) -> UpdateMLModelFluentBuilder
fn clone(&self) -> UpdateMLModelFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for UpdateMLModelFluentBuilder
impl !RefUnwindSafe for UpdateMLModelFluentBuilder
impl Send for UpdateMLModelFluentBuilder
impl Sync for UpdateMLModelFluentBuilder
impl Unpin for UpdateMLModelFluentBuilder
impl !UnwindSafe for UpdateMLModelFluentBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more