Struct aws_sdk_ecr::input::PutImageInput
source · [−]#[non_exhaustive]pub struct PutImageInput { /* private fields */ }
Implementations
sourceimpl 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
.
sourceimpl 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
sourceimpl Clone for PutImageInput
impl Clone for PutImageInput
sourcefn clone(&self) -> PutImageInput
fn clone(&self) -> PutImageInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more