Struct aws_sdk_s3::types::MultipartUpload
source · #[non_exhaustive]pub struct MultipartUpload { /* private fields */ }
Expand description
Container for the MultipartUpload
for the Amazon S3 object.
Implementations§
source§impl MultipartUpload
impl MultipartUpload
sourcepub fn key(&self) -> Option<&str>
pub fn key(&self) -> Option<&str>
Key of the object for which the multipart upload was initiated.
sourcepub fn initiated(&self) -> Option<&DateTime>
pub fn initiated(&self) -> Option<&DateTime>
Date and time at which the multipart upload was initiated.
sourcepub fn storage_class(&self) -> Option<&StorageClass>
pub fn storage_class(&self) -> Option<&StorageClass>
The class of storage used to store the object.
sourcepub fn owner(&self) -> Option<&Owner>
pub fn owner(&self) -> Option<&Owner>
Specifies the owner of the object that is part of the multipart upload.
sourcepub fn checksum_algorithm(&self) -> Option<&ChecksumAlgorithm>
pub fn checksum_algorithm(&self) -> Option<&ChecksumAlgorithm>
The algorithm that was used to create a checksum of the object.
source§impl MultipartUpload
impl MultipartUpload
sourcepub fn builder() -> MultipartUploadBuilder
pub fn builder() -> MultipartUploadBuilder
Creates a new builder-style object to manufacture MultipartUpload
.
Trait Implementations§
source§impl Clone for MultipartUpload
impl Clone for MultipartUpload
source§fn clone(&self) -> MultipartUpload
fn clone(&self) -> MultipartUpload
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 MultipartUpload
impl Debug for MultipartUpload
source§impl PartialEq<MultipartUpload> for MultipartUpload
impl PartialEq<MultipartUpload> for MultipartUpload
source§fn eq(&self, other: &MultipartUpload) -> bool
fn eq(&self, other: &MultipartUpload) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.