Struct aws_sdk_ecr::input::CompleteLayerUploadInput
source · [−]#[non_exhaustive]pub struct CompleteLayerUploadInput { /* private fields */ }
Implementations
sourceimpl 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
.
sourceimpl 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
sourceimpl Clone for CompleteLayerUploadInput
impl Clone for CompleteLayerUploadInput
sourcefn clone(&self) -> CompleteLayerUploadInput
fn clone(&self) -> CompleteLayerUploadInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CompleteLayerUploadInput
impl Debug for CompleteLayerUploadInput
sourceimpl PartialEq<CompleteLayerUploadInput> for CompleteLayerUploadInput
impl PartialEq<CompleteLayerUploadInput> for CompleteLayerUploadInput
sourcefn eq(&self, other: &CompleteLayerUploadInput) -> bool
fn eq(&self, other: &CompleteLayerUploadInput) -> bool
impl StructuralPartialEq for CompleteLayerUploadInput
Auto Trait Implementations
impl RefUnwindSafe for CompleteLayerUploadInput
impl Send for CompleteLayerUploadInput
impl Sync for CompleteLayerUploadInput
impl Unpin for CompleteLayerUploadInput
impl UnwindSafe for CompleteLayerUploadInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more