[][src]Struct rusoto_sagemaker::CreateImageVersionRequest

pub struct CreateImageVersionRequest {
    pub base_image: String,
    pub client_token: String,
    pub image_name: String,
}

Fields

base_image: String

The registry path of the container image to use as the starting point for this version. The path is an Amazon Container Registry (ECR) URI in the following format:

<acct-id>.dkr.ecr.<region>.amazonaws.com/<repo-name[:tag] or [@digest]>

client_token: String

A unique ID. If not specified, the AWS CLI and AWS SDKs, such as the SDK for Python (Boto3), add a unique value to the call.

image_name: String

The ImageName of the Image to create a version of.

Trait Implementations

impl Clone for CreateImageVersionRequest[src]

impl Debug for CreateImageVersionRequest[src]

impl Default for CreateImageVersionRequest[src]

impl PartialEq<CreateImageVersionRequest> for CreateImageVersionRequest[src]

impl Serialize for CreateImageVersionRequest[src]

impl StructuralPartialEq for CreateImageVersionRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.