Struct aws_sdk_ecr::input::PutImageInput
source · #[non_exhaustive]pub struct PutImageInput { /* private fields */ }Implementations§
source§impl PutImageInput
impl PutImageInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutImage, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutImage, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<PutImage>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PutImageInput.
source§impl PutImageInput
impl PutImageInput
sourcepub fn registry_id(&self) -> Option<&str>
pub fn registry_id(&self) -> Option<&str>
The Amazon Web Services 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.
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The name of the repository in which to put the image.
sourcepub fn image_manifest(&self) -> Option<&str>
pub fn image_manifest(&self) -> Option<&str>
The image manifest corresponding to the image to be uploaded.
sourcepub fn image_manifest_media_type(&self) -> Option<&str>
pub fn image_manifest_media_type(&self) -> Option<&str>
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.
sourcepub fn image_tag(&self) -> Option<&str>
pub fn image_tag(&self) -> Option<&str>
The tag to associate with the image. This parameter is required for images that use the Docker Image Manifest V2 Schema 2 or Open Container Initiative (OCI) formats.
sourcepub fn image_digest(&self) -> Option<&str>
pub fn image_digest(&self) -> Option<&str>
The image digest of the image manifest corresponding to the image.
Trait Implementations§
source§impl Clone for PutImageInput
impl Clone for PutImageInput
source§fn clone(&self) -> PutImageInput
fn clone(&self) -> PutImageInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for PutImageInput
impl Debug for PutImageInput
source§impl PartialEq<PutImageInput> for PutImageInput
impl PartialEq<PutImageInput> for PutImageInput
source§fn eq(&self, other: &PutImageInput) -> bool
fn eq(&self, other: &PutImageInput) -> bool
self and other values to be equal, and is used
by ==.