#[non_exhaustive]pub struct ListBucketInventoryConfigurationsOutput { /* private fields */ }
Implementations§
source§impl 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.
source§impl ListBucketInventoryConfigurationsOutput
impl ListBucketInventoryConfigurationsOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListBucketInventoryConfigurationsOutput
.
Trait Implementations§
source§impl Clone for ListBucketInventoryConfigurationsOutput
impl Clone for ListBucketInventoryConfigurationsOutput
source§fn clone(&self) -> ListBucketInventoryConfigurationsOutput
fn clone(&self) -> ListBucketInventoryConfigurationsOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more