pub struct UpdateMLModel { /* 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 UpdateMLModel
impl UpdateMLModel
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateMLModel, AwsResponseRetryClassifier>, SdkError<UpdateMLModelError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateMLModel, AwsResponseRetryClassifier>, SdkError<UpdateMLModelError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateMlModelOutput, SdkError<UpdateMLModelError>>
pub async fn send(
self
) -> Result<UpdateMlModelOutput, SdkError<UpdateMLModelError>>
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 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 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 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
.
Trait Implementations§
source§impl Clone for UpdateMLModel
impl Clone for UpdateMLModel
source§fn clone(&self) -> UpdateMLModel
fn clone(&self) -> UpdateMLModel
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more