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 ==
.impl StructuralPartialEq for UpdateMlModelInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateMlModelInputBuilder
impl RefUnwindSafe for UpdateMlModelInputBuilder
impl Send for UpdateMlModelInputBuilder
impl Sync for UpdateMlModelInputBuilder
impl Unpin for UpdateMlModelInputBuilder
impl UnwindSafe for UpdateMlModelInputBuilder
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