Struct aws_sdk_ecr::input::CompleteLayerUploadInput
source · #[non_exhaustive]pub struct CompleteLayerUploadInput { /* private fields */ }Implementations§
source§impl CompleteLayerUploadInput
impl CompleteLayerUploadInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CompleteLayerUpload, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CompleteLayerUpload, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CompleteLayerUpload>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CompleteLayerUploadInput.
source§impl CompleteLayerUploadInput
impl CompleteLayerUploadInput
sourcepub fn registry_id(&self) -> Option<&str>
pub fn registry_id(&self) -> Option<&str>
The Amazon Web Services account ID associated with the registry to which to upload layers. 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 to associate with the image layer.
sourcepub fn upload_id(&self) -> Option<&str>
pub fn upload_id(&self) -> Option<&str>
The upload ID from a previous InitiateLayerUpload operation to associate with the image layer.
sourcepub fn layer_digests(&self) -> Option<&[String]>
pub fn layer_digests(&self) -> Option<&[String]>
The sha256 digest of the image layer.
Trait Implementations§
source§impl Clone for CompleteLayerUploadInput
impl Clone for CompleteLayerUploadInput
source§fn clone(&self) -> CompleteLayerUploadInput
fn clone(&self) -> CompleteLayerUploadInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for CompleteLayerUploadInput
impl Debug for CompleteLayerUploadInput
source§impl PartialEq<CompleteLayerUploadInput> for CompleteLayerUploadInput
impl PartialEq<CompleteLayerUploadInput> for CompleteLayerUploadInput
source§fn eq(&self, other: &CompleteLayerUploadInput) -> bool
fn eq(&self, other: &CompleteLayerUploadInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.