Struct aws_sdk_sagemaker::input::CreateImageInput [−][src]
#[non_exhaustive]pub struct CreateImageInput {
pub description: Option<String>,
pub display_name: Option<String>,
pub image_name: Option<String>,
pub role_arn: Option<String>,
pub tags: Option<Vec<Tag>>,
}
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.description: Option<String>
The description of the image.
display_name: Option<String>
The display name of the image. If not provided, ImageName
is displayed.
image_name: Option<String>
The name of the image. Must be unique to your account.
role_arn: Option<String>
The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on your behalf.
A list of tags to apply to the image.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateImage, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateImage, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateImage
>
Creates a new builder-style object to manufacture CreateImageInput
The description of the image.
The display name of the image. If not provided, ImageName
is displayed.
The name of the image. Must be unique to your account.
The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on your behalf.
A list of tags to apply to the image.
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 CreateImageInput
impl Send for CreateImageInput
impl Sync for CreateImageInput
impl Unpin for CreateImageInput
impl UnwindSafe for CreateImageInput
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