pub struct ListObjectsV2Input {
pub bucket: String,
pub continuation_token: Option<String>,
pub delimiter: Option<String>,
pub encoding_type: Option<EncodingType>,
pub expected_bucket_owner: Option<String>,
pub fetch_owner: Option<bool>,
pub max_keys: Option<i32>,
pub optional_object_attributes: Vec<OptionalObjectAttributes>,
pub prefix: Option<String>,
pub request_payer: Option<RequestPayer>,
pub start_after: Option<String>,
}Expand description
S3 ListObjectsV2Input.
Fields§
§bucket: StringHTTP label (URI path).
continuation_token: Option<String>HTTP query: continuation-token.
delimiter: Option<String>HTTP query: delimiter.
encoding_type: Option<EncodingType>HTTP query: encoding-type.
expected_bucket_owner: Option<String>HTTP header: x-amz-expected-bucket-owner.
fetch_owner: Option<bool>HTTP query: fetch-owner.
max_keys: Option<i32>HTTP query: max-keys.
optional_object_attributes: Vec<OptionalObjectAttributes>HTTP header: x-amz-optional-object-attributes.
prefix: Option<String>HTTP query: prefix.
request_payer: Option<RequestPayer>HTTP header: x-amz-request-payer.
start_after: Option<String>HTTP query: start-after.
Trait Implementations§
Source§impl Clone for ListObjectsV2Input
impl Clone for ListObjectsV2Input
Source§fn clone(&self) -> ListObjectsV2Input
fn clone(&self) -> ListObjectsV2Input
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListObjectsV2Input
impl Debug for ListObjectsV2Input
Source§impl Default for ListObjectsV2Input
impl Default for ListObjectsV2Input
Source§fn default() -> ListObjectsV2Input
fn default() -> ListObjectsV2Input
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListObjectsV2Input
impl RefUnwindSafe for ListObjectsV2Input
impl Send for ListObjectsV2Input
impl Sync for ListObjectsV2Input
impl Unpin for ListObjectsV2Input
impl UnsafeUnpin for ListObjectsV2Input
impl UnwindSafe for ListObjectsV2Input
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