pub struct AbortMultipartUploadRequest {
pub bucket: String,
pub key: String,
pub request_payer: Option<String>,
pub upload_id: String,
}Fields§
§bucket: StringThe bucket name to which the upload was taking place.
When using this API with an access point, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this operation using an access point through the AWS SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using Access Points in the Amazon Simple Storage Service Developer Guide.
key: StringKey of the object for which the multipart upload was initiated.
request_payer: Option<String>§upload_id: StringUpload ID that identifies the multipart upload.
Trait Implementations§
Source§impl Clone for AbortMultipartUploadRequest
impl Clone for AbortMultipartUploadRequest
Source§fn clone(&self) -> AbortMultipartUploadRequest
fn clone(&self) -> AbortMultipartUploadRequest
Returns a duplicate 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 AbortMultipartUploadRequest
impl Debug for AbortMultipartUploadRequest
Source§impl Default for AbortMultipartUploadRequest
impl Default for AbortMultipartUploadRequest
Source§fn default() -> AbortMultipartUploadRequest
fn default() -> AbortMultipartUploadRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for AbortMultipartUploadRequest
Auto Trait Implementations§
impl Freeze for AbortMultipartUploadRequest
impl RefUnwindSafe for AbortMultipartUploadRequest
impl Send for AbortMultipartUploadRequest
impl Sync for AbortMultipartUploadRequest
impl Unpin for AbortMultipartUploadRequest
impl UnwindSafe for AbortMultipartUploadRequest
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
Mutably borrows from an owned value. Read more