#[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
source§fn eq(&self, other: &CompleteLayerUploadInput) -> bool
fn eq(&self, other: &CompleteLayerUploadInput) -> bool
self and other values to be equal, and is used
by ==.