#[non_exhaustive]pub struct ListBucketInventoryConfigurationsOutput { /* private fields */ }
Implementations
sourceimpl ListBucketInventoryConfigurationsOutput
impl ListBucketInventoryConfigurationsOutput
sourcepub fn continuation_token(&self) -> Option<&str>
pub fn continuation_token(&self) -> Option<&str>
If sent in the request, the marker that is used as a starting point for this inventory configuration list response.
sourcepub fn inventory_configuration_list(&self) -> Option<&[InventoryConfiguration]>
pub fn inventory_configuration_list(&self) -> Option<&[InventoryConfiguration]>
The list of inventory configurations for a bucket.
sourcepub fn is_truncated(&self) -> bool
pub fn is_truncated(&self) -> bool
Tells whether the returned list of inventory configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken is provided for a subsequent request.
sourcepub fn next_continuation_token(&self) -> Option<&str>
pub fn next_continuation_token(&self) -> Option<&str>
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.
sourceimpl ListBucketInventoryConfigurationsOutput
impl ListBucketInventoryConfigurationsOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListBucketInventoryConfigurationsOutput
.
Trait Implementations
sourceimpl Clone for ListBucketInventoryConfigurationsOutput
impl Clone for ListBucketInventoryConfigurationsOutput
sourcefn clone(&self) -> ListBucketInventoryConfigurationsOutput
fn clone(&self) -> ListBucketInventoryConfigurationsOutput
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<ListBucketInventoryConfigurationsOutput> for ListBucketInventoryConfigurationsOutput
impl PartialEq<ListBucketInventoryConfigurationsOutput> for ListBucketInventoryConfigurationsOutput
sourcefn eq(&self, other: &ListBucketInventoryConfigurationsOutput) -> bool
fn eq(&self, other: &ListBucketInventoryConfigurationsOutput) -> bool
impl StructuralPartialEq for ListBucketInventoryConfigurationsOutput
Auto Trait Implementations
impl RefUnwindSafe for ListBucketInventoryConfigurationsOutput
impl Send for ListBucketInventoryConfigurationsOutput
impl Sync for ListBucketInventoryConfigurationsOutput
impl Unpin for ListBucketInventoryConfigurationsOutput
impl UnwindSafe for ListBucketInventoryConfigurationsOutput
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