Struct rusoto_s3::ListBucketInventoryConfigurationsRequest[][src]

pub struct ListBucketInventoryConfigurationsRequest {
    pub bucket: String,
    pub continuation_token: Option<String>,
}

Fields

The name of the bucket containing the inventory configurations to retrieve.

The marker used to continue an inventory configuration listing that has been truncated. Use the NextContinuationToken from a previously truncated list response to continue the listing. The continuation token is an opaque value that Amazon S3 understands.

Trait Implementations

impl Default for ListBucketInventoryConfigurationsRequest
[src]

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

impl Debug for ListBucketInventoryConfigurationsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListBucketInventoryConfigurationsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListBucketInventoryConfigurationsRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations