Struct rusoto_s3::ListBucketMetricsConfigurationsRequest[][src]

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

Fields

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

The marker that is used to continue a metrics 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 ListBucketMetricsConfigurationsRequest
[src]

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

impl Debug for ListBucketMetricsConfigurationsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListBucketMetricsConfigurationsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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