Struct aws_sdk_rust::aws::s3::object::ListObjectsRequest
[−]
[src]
pub struct ListObjectsRequest { pub bucket: BucketName, pub prefix: Option<Prefix>, pub max_keys: Option<MaxKeys>, pub delimiter: Option<Delimiter>, pub marker: Option<Marker>, pub encoding_type: Option<EncodingType>, }
Fields
bucket: BucketName
prefix: Option<Prefix>
Limits the response to keys that begin with the specified prefix.
max_keys: Option<MaxKeys>
Sets the maximum number of keys returned in the response. The response might contain fewer keys but will never contain more.
delimiter: Option<Delimiter>
A delimiter is a character you use to group keys.
marker: Option<Marker>
Specifies the key to start with when listing objects in a bucket.
encoding_type: Option<EncodingType>
Trait Implementations
impl Default for ListObjectsRequest
[src]
fn default() -> ListObjectsRequest
Returns the "default value" for a type. Read more