#[non_exhaustive]pub struct ListBucketMetricsConfigurationsOutput { /* private fields */ }
Implementations
sourceimpl ListBucketMetricsConfigurationsOutput
impl ListBucketMetricsConfigurationsOutput
sourcepub fn is_truncated(&self) -> bool
pub fn is_truncated(&self) -> bool
Indicates whether the returned list of metrics configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken will be provided for a subsequent request.
sourcepub fn continuation_token(&self) -> Option<&str>
pub fn continuation_token(&self) -> Option<&str>
The marker that is used as a starting point for this metrics configuration list response. This value is present if it was sent in the request.
sourcepub fn next_continuation_token(&self) -> Option<&str>
pub fn next_continuation_token(&self) -> Option<&str>
The marker 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.
sourcepub fn metrics_configuration_list(&self) -> Option<&[MetricsConfiguration]>
pub fn metrics_configuration_list(&self) -> Option<&[MetricsConfiguration]>
The list of metrics configurations for a bucket.
sourceimpl ListBucketMetricsConfigurationsOutput
impl ListBucketMetricsConfigurationsOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListBucketMetricsConfigurationsOutput
.
Trait Implementations
sourceimpl Clone for ListBucketMetricsConfigurationsOutput
impl Clone for ListBucketMetricsConfigurationsOutput
sourcefn clone(&self) -> ListBucketMetricsConfigurationsOutput
fn clone(&self) -> ListBucketMetricsConfigurationsOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<ListBucketMetricsConfigurationsOutput> for ListBucketMetricsConfigurationsOutput
impl PartialEq<ListBucketMetricsConfigurationsOutput> for ListBucketMetricsConfigurationsOutput
sourcefn eq(&self, other: &ListBucketMetricsConfigurationsOutput) -> bool
fn eq(&self, other: &ListBucketMetricsConfigurationsOutput) -> bool
impl StructuralPartialEq for ListBucketMetricsConfigurationsOutput
Auto Trait Implementations
impl RefUnwindSafe for ListBucketMetricsConfigurationsOutput
impl Send for ListBucketMetricsConfigurationsOutput
impl Sync for ListBucketMetricsConfigurationsOutput
impl Unpin for ListBucketMetricsConfigurationsOutput
impl UnwindSafe for ListBucketMetricsConfigurationsOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more