pub struct ListPartsInput {
pub bucket: String,
pub expected_bucket_owner: Option<String>,
pub key: String,
pub max_parts: Option<i32>,
pub part_number_marker: Option<String>,
pub request_payer: Option<RequestPayer>,
pub sse_customer_algorithm: Option<String>,
pub sse_customer_key: Option<String>,
pub sse_customer_key_md5: Option<String>,
pub upload_id: String,
}Expand description
S3 ListPartsInput.
Fields§
§bucket: StringHTTP label (URI path).
expected_bucket_owner: Option<String>HTTP header: x-amz-expected-bucket-owner.
key: StringHTTP label (URI path).
max_parts: Option<i32>HTTP query: max-parts.
part_number_marker: Option<String>HTTP query: part-number-marker.
request_payer: Option<RequestPayer>HTTP header: x-amz-request-payer.
sse_customer_algorithm: Option<String>HTTP header: x-amz-server-side-encryption-customer-algorithm.
sse_customer_key: Option<String>HTTP header: x-amz-server-side-encryption-customer-key.
sse_customer_key_md5: Option<String>HTTP header: x-amz-server-side-encryption-customer-key-MD5.
upload_id: StringHTTP query: uploadId.
Trait Implementations§
Source§impl Clone for ListPartsInput
impl Clone for ListPartsInput
Source§fn clone(&self) -> ListPartsInput
fn clone(&self) -> ListPartsInput
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 ListPartsInput
impl Debug for ListPartsInput
Source§impl Default for ListPartsInput
impl Default for ListPartsInput
Source§fn default() -> ListPartsInput
fn default() -> ListPartsInput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListPartsInput
impl RefUnwindSafe for ListPartsInput
impl Send for ListPartsInput
impl Sync for ListPartsInput
impl Unpin for ListPartsInput
impl UnsafeUnpin for ListPartsInput
impl UnwindSafe for ListPartsInput
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