Struct aws_sdk_sagemaker::input::UpdateImageInput [−][src]
#[non_exhaustive]pub struct UpdateImageInput {
pub delete_properties: Option<Vec<String>>,
pub description: Option<String>,
pub display_name: Option<String>,
pub image_name: Option<String>,
pub role_arn: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.delete_properties: Option<Vec<String>>
A list of properties to delete. Only the Description
and
DisplayName
properties can be deleted.
description: Option<String>
The new description for the image.
display_name: Option<String>
The new display name for the image.
image_name: Option<String>
The name of the image to update.
role_arn: Option<String>
The new Amazon Resource Name (ARN) for the IAM role that enables Amazon SageMaker to perform tasks on your behalf.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateImage, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateImage, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateImage
>
Creates a new builder-style object to manufacture UpdateImageInput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UpdateImageInput
impl Send for UpdateImageInput
impl Sync for UpdateImageInput
impl Unpin for UpdateImageInput
impl UnwindSafe for UpdateImageInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more