Struct aws_sdk_sagemaker::operation::update_app_image_config::builders::UpdateAppImageConfigFluentBuilder
source · pub struct UpdateAppImageConfigFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateAppImageConfig
.
Updates the properties of an AppImageConfig.
Implementations§
source§impl UpdateAppImageConfigFluentBuilder
impl UpdateAppImageConfigFluentBuilder
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateAppImageConfig, AwsResponseRetryClassifier>, SdkError<UpdateAppImageConfigError>>
pub async fn customize( self ) -> Result<CustomizableOperation<UpdateAppImageConfig, AwsResponseRetryClassifier>, SdkError<UpdateAppImageConfigError>>
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<UpdateAppImageConfigOutput, SdkError<UpdateAppImageConfigError>>
pub async fn send( self ) -> Result<UpdateAppImageConfigOutput, SdkError<UpdateAppImageConfigError>>
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 app_image_config_name(self, input: impl Into<String>) -> Self
pub fn app_image_config_name(self, input: impl Into<String>) -> Self
The name of the AppImageConfig to update.
sourcepub fn set_app_image_config_name(self, input: Option<String>) -> Self
pub fn set_app_image_config_name(self, input: Option<String>) -> Self
The name of the AppImageConfig to update.
sourcepub fn kernel_gateway_image_config(
self,
input: KernelGatewayImageConfig
) -> Self
pub fn kernel_gateway_image_config( self, input: KernelGatewayImageConfig ) -> Self
The new KernelGateway app to run on the image.
sourcepub fn set_kernel_gateway_image_config(
self,
input: Option<KernelGatewayImageConfig>
) -> Self
pub fn set_kernel_gateway_image_config( self, input: Option<KernelGatewayImageConfig> ) -> Self
The new KernelGateway app to run on the image.
Trait Implementations§
source§impl Clone for UpdateAppImageConfigFluentBuilder
impl Clone for UpdateAppImageConfigFluentBuilder
source§fn clone(&self) -> UpdateAppImageConfigFluentBuilder
fn clone(&self) -> UpdateAppImageConfigFluentBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more