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

pub struct ListObjectsOutput {
    pub name: BucketName,
    pub next_marker: NextMarker,
    pub delimiter: Delimiter,
    pub max_keys: MaxKeys,
    pub prefix: Prefix,
    pub marker: Marker,
    pub encoding_type: EncodingType,
    pub is_truncated: IsTruncated,
    pub contents: ObjectList,
    pub common_prefixes: CommonPrefixList,
}

Fields

When response is truncated (the IsTruncated element value in the response is true), you can use the key name in this field as marker in the subsequent request to get next set of objects. Amazon S3 lists objects in alphabetical order Note: This element is returned only if you have delimiter request parameter specified. If response does not include the NextMaker and it is truncated, you can use the value of the last Key in the response as the marker in the subsequent request to get the next set of object keys.

Encoding type used by Amazon S3 to encode object keys in the response.

A flag that indicates whether or not Amazon S3 returned all of the results that satisfied the search criteria.

Trait Implementations

impl Default for ListObjectsOutput
[src]

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

impl Debug for ListObjectsOutput
[src]

Formats the value using the given formatter.