Struct aws_sdk_ecr::input::UploadLayerPartInput
source · #[non_exhaustive]pub struct UploadLayerPartInput { /* private fields */ }Implementations§
source§impl UploadLayerPartInput
impl UploadLayerPartInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UploadLayerPart, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UploadLayerPart, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UploadLayerPart>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UploadLayerPartInput.
source§impl UploadLayerPartInput
impl UploadLayerPartInput
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 you are uploading layer parts. 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 which you are uploading layer parts.
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 layer part upload.
sourcepub fn part_first_byte(&self) -> Option<i64>
pub fn part_first_byte(&self) -> Option<i64>
The position of the first byte of the layer part witin the overall image layer.
sourcepub fn part_last_byte(&self) -> Option<i64>
pub fn part_last_byte(&self) -> Option<i64>
The position of the last byte of the layer part within the overall image layer.
sourcepub fn layer_part_blob(&self) -> Option<&Blob>
pub fn layer_part_blob(&self) -> Option<&Blob>
The base64-encoded layer part payload.
Trait Implementations§
source§impl Clone for UploadLayerPartInput
impl Clone for UploadLayerPartInput
source§fn clone(&self) -> UploadLayerPartInput
fn clone(&self) -> UploadLayerPartInput
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 UploadLayerPartInput
impl Debug for UploadLayerPartInput
source§impl PartialEq<UploadLayerPartInput> for UploadLayerPartInput
impl PartialEq<UploadLayerPartInput> for UploadLayerPartInput
source§fn eq(&self, other: &UploadLayerPartInput) -> bool
fn eq(&self, other: &UploadLayerPartInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.