Struct aws_sdk_sagemaker::operation::update_training_job::builders::UpdateTrainingJobFluentBuilder
source · pub struct UpdateTrainingJobFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateTrainingJob
.
Update a model training job to request a new Debugger profiling configuration or to change warm pool retention length.
Implementations§
source§impl UpdateTrainingJobFluentBuilder
impl UpdateTrainingJobFluentBuilder
sourcepub fn as_input(&self) -> &UpdateTrainingJobInputBuilder
pub fn as_input(&self) -> &UpdateTrainingJobInputBuilder
Access the UpdateTrainingJob as a reference.
sourcepub async fn send(
self
) -> Result<UpdateTrainingJobOutput, SdkError<UpdateTrainingJobError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateTrainingJobOutput, SdkError<UpdateTrainingJobError, 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<UpdateTrainingJobOutput, UpdateTrainingJobError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateTrainingJobOutput, UpdateTrainingJobError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn training_job_name(self, input: impl Into<String>) -> Self
pub fn training_job_name(self, input: impl Into<String>) -> Self
The name of a training job to update the Debugger profiling configuration.
sourcepub fn set_training_job_name(self, input: Option<String>) -> Self
pub fn set_training_job_name(self, input: Option<String>) -> Self
The name of a training job to update the Debugger profiling configuration.
sourcepub fn get_training_job_name(&self) -> &Option<String>
pub fn get_training_job_name(&self) -> &Option<String>
The name of a training job to update the Debugger profiling configuration.
sourcepub fn profiler_config(self, input: ProfilerConfigForUpdate) -> Self
pub fn profiler_config(self, input: ProfilerConfigForUpdate) -> Self
Configuration information for Amazon SageMaker Debugger system monitoring, framework profiling, and storage paths.
sourcepub fn set_profiler_config(self, input: Option<ProfilerConfigForUpdate>) -> Self
pub fn set_profiler_config(self, input: Option<ProfilerConfigForUpdate>) -> Self
Configuration information for Amazon SageMaker Debugger system monitoring, framework profiling, and storage paths.
sourcepub fn get_profiler_config(&self) -> &Option<ProfilerConfigForUpdate>
pub fn get_profiler_config(&self) -> &Option<ProfilerConfigForUpdate>
Configuration information for Amazon SageMaker Debugger system monitoring, framework profiling, and storage paths.
sourcepub fn profiler_rule_configurations(
self,
input: ProfilerRuleConfiguration
) -> Self
pub fn profiler_rule_configurations( self, input: ProfilerRuleConfiguration ) -> Self
Appends an item to ProfilerRuleConfigurations
.
To override the contents of this collection use set_profiler_rule_configurations
.
Configuration information for Amazon SageMaker Debugger rules for profiling system and framework metrics.
sourcepub fn set_profiler_rule_configurations(
self,
input: Option<Vec<ProfilerRuleConfiguration>>
) -> Self
pub fn set_profiler_rule_configurations( self, input: Option<Vec<ProfilerRuleConfiguration>> ) -> Self
Configuration information for Amazon SageMaker Debugger rules for profiling system and framework metrics.
sourcepub fn get_profiler_rule_configurations(
&self
) -> &Option<Vec<ProfilerRuleConfiguration>>
pub fn get_profiler_rule_configurations( &self ) -> &Option<Vec<ProfilerRuleConfiguration>>
Configuration information for Amazon SageMaker Debugger rules for profiling system and framework metrics.
sourcepub fn resource_config(self, input: ResourceConfigForUpdate) -> Self
pub fn resource_config(self, input: ResourceConfigForUpdate) -> Self
The training job ResourceConfig
to update warm pool retention length.
sourcepub fn set_resource_config(self, input: Option<ResourceConfigForUpdate>) -> Self
pub fn set_resource_config(self, input: Option<ResourceConfigForUpdate>) -> Self
The training job ResourceConfig
to update warm pool retention length.
sourcepub fn get_resource_config(&self) -> &Option<ResourceConfigForUpdate>
pub fn get_resource_config(&self) -> &Option<ResourceConfigForUpdate>
The training job ResourceConfig
to update warm pool retention length.
Trait Implementations§
source§impl Clone for UpdateTrainingJobFluentBuilder
impl Clone for UpdateTrainingJobFluentBuilder
source§fn clone(&self) -> UpdateTrainingJobFluentBuilder
fn clone(&self) -> UpdateTrainingJobFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more