Struct aws_sdk_rust::aws::s3::object::ListObjectVersionsRequest [] [src]

pub struct ListObjectVersionsRequest {
    pub bucket: BucketName,
    pub prefix: Option<Prefix>,
    pub max_keys: Option<MaxKeys>,
    pub delimiter: Option<Delimiter>,
    pub key_marker: Option<KeyMarker>,
    pub encoding_type: Option<EncodingType>,
    pub version_id_marker: Option<VersionIdMarker>,
    pub start_after: Option<StartAfter>,
}

Fields

Limits the response to keys that begin with the specified prefix.

Sets the maximum number of keys returned in the response. The response might contain fewer keys but will never contain more.

A delimiter is a character you use to group keys.

Specifies the key to start with when listing objects in a bucket.

Specifies the object version you want to start listing from.

Start the list after a specifc number.

Trait Implementations

impl Debug for ListObjectVersionsRequest
[src]

Formats the value using the given formatter.

impl Default for ListObjectVersionsRequest
[src]

Returns the "default value" for a type. Read more

impl Decodable for ListObjectVersionsRequest
[src]

Deserialize a value using a Decoder.

impl Encodable for ListObjectVersionsRequest
[src]

Serialize a value using an Encoder.