#[non_exhaustive]pub struct CompleteLayerUploadInput {
pub registry_id: Option<String>,
pub repository_name: Option<String>,
pub upload_id: Option<String>,
pub layer_digests: Option<Vec<String>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.registry_id: Option<String>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.
repository_name: Option<String>The name of the repository to associate with the image layer.
upload_id: Option<String>The upload ID from a previous InitiateLayerUpload operation to associate with the image layer.
layer_digests: Option<Vec<String>>The sha256 digest of the image layer.
Implementations§
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) -> &[String]
pub fn layer_digests(&self) -> &[String]
The sha256 digest of the image layer.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .layer_digests.is_none().
source§impl CompleteLayerUploadInput
impl CompleteLayerUploadInput
sourcepub fn builder() -> CompleteLayerUploadInputBuilder
pub fn builder() -> CompleteLayerUploadInputBuilder
Creates a new builder-style object to manufacture CompleteLayerUploadInput.
Trait Implementations§
source§impl Clone for CompleteLayerUploadInput
impl Clone for CompleteLayerUploadInput
source§fn clone(&self) -> CompleteLayerUploadInput
fn clone(&self) -> CompleteLayerUploadInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CompleteLayerUploadInput
impl Debug for CompleteLayerUploadInput
source§impl PartialEq for CompleteLayerUploadInput
impl PartialEq for CompleteLayerUploadInput
impl StructuralPartialEq for CompleteLayerUploadInput
Auto Trait Implementations§
impl Freeze for CompleteLayerUploadInput
impl RefUnwindSafe for CompleteLayerUploadInput
impl Send for CompleteLayerUploadInput
impl Sync for CompleteLayerUploadInput
impl Unpin for CompleteLayerUploadInput
impl UnwindSafe for CompleteLayerUploadInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more