[][src]Struct rusoto_ecr::PutImageRequest

pub struct PutImageRequest {
    pub image_digest: Option<String>,
    pub image_manifest: String,
    pub image_manifest_media_type: Option<String>,
    pub image_tag: Option<String>,
    pub registry_id: Option<String>,
    pub repository_name: String,
}

Fields

image_digest: Option<String>

The image digest of the image manifest corresponding to the image.

image_manifest: String

The image manifest corresponding to the image to be uploaded.

image_manifest_media_type: Option<String>

The media type of the image manifest. If you push an image manifest that does not contain the mediaType field, you must specify the imageManifestMediaType in the request.

image_tag: Option<String>

The tag to associate with the image. This parameter is required for images that use the Docker Image Manifest V2 Schema 2 or OCI formats.

registry_id: Option<String>

The AWS account ID associated with the registry that contains the repository in which to put the image. If you do not specify a registry, the default registry is assumed.

repository_name: String

The name of the repository in which to put the image.

Trait Implementations

impl Clone for PutImageRequest[src]

impl Debug for PutImageRequest[src]

impl Default for PutImageRequest[src]

impl PartialEq<PutImageRequest> for PutImageRequest[src]

impl Serialize for PutImageRequest[src]

impl StructuralPartialEq for PutImageRequest[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> 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.