Struct aws_sdk_s3::model::MultipartUpload [−][src]
#[non_exhaustive]pub struct MultipartUpload {
pub upload_id: Option<String>,
pub key: Option<String>,
pub initiated: Option<Instant>,
pub storage_class: Option<StorageClass>,
pub owner: Option<Owner>,
pub initiator: Option<Initiator>,
}
Expand description
Container for the MultipartUpload
for the Amazon S3 object.
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.upload_id: Option<String>
Upload ID that identifies the multipart upload.
key: Option<String>
Key of the object for which the multipart upload was initiated.
initiated: Option<Instant>
Date and time at which the multipart upload was initiated.
storage_class: Option<StorageClass>
The class of storage used to store the object.
owner: Option<Owner>
Specifies the owner of the object that is part of the multipart upload.
initiator: Option<Initiator>
Identifies who initiated the multipart upload.
Implementations
Key of the object for which the multipart upload was initiated.
Date and time at which the multipart upload was initiated.
The class of storage used to store the object.
Specifies the owner of the object that is part of the multipart upload.
Creates a new builder-style object to manufacture MultipartUpload
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for MultipartUpload
impl Send for MultipartUpload
impl Sync for MultipartUpload
impl Unpin for MultipartUpload
impl UnwindSafe for MultipartUpload
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more