Struct aws_sdk_ecrpublic::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, or registry alias, that's associated with the public registry that contains the repository where the image is put. If you do not specify a registry, the default public registry is assumed.
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The name of the repository where the image is put.
sourcepub fn image_manifest(&self) -> Option<&str>
pub fn image_manifest(&self) -> Option<&str>
The image manifest that corresponds 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 doesn't 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 that corresponds 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 ==.