Struct rusoto_s3::ListBucketInventoryConfigurationsOutput[][src]

pub struct ListBucketInventoryConfigurationsOutput {
    pub continuation_token: Option<String>,
    pub inventory_configuration_list: Option<Vec<InventoryConfiguration>>,
    pub is_truncated: Option<bool>,
    pub next_continuation_token: Option<String>,
}

Fields

If sent in the request, the marker that is used as a starting point for this inventory configuration list response.

The list of inventory configurations for a bucket.

Indicates whether the returned list of inventory configurations is truncated in this response. A value of true indicates that the list is truncated.

The marker used to continue this inventory configuration listing. Use the NextContinuationToken from this response to continue the listing in a subsequent request. The continuation token is an opaque value that Amazon S3 understands.

Trait Implementations

impl Default for ListBucketInventoryConfigurationsOutput
[src]

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

impl Debug for ListBucketInventoryConfigurationsOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListBucketInventoryConfigurationsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListBucketInventoryConfigurationsOutput
[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