#[non_exhaustive]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>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.continuation_token: Option<String>
If sent in the request, the marker that is used as a starting point for this inventory configuration list response.
inventory_configuration_list: Option<Vec<InventoryConfiguration>>
The list of inventory configurations for a bucket.
is_truncated: Option<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.
next_continuation_token: Option<String>
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.
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) -> &[InventoryConfiguration]
pub fn inventory_configuration_list(&self) -> &[InventoryConfiguration]
The list of inventory configurations for a bucket.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .inventory_configuration_list.is_none()
.
Sourcepub fn is_truncated(&self) -> Option<bool>
pub fn is_truncated(&self) -> Option<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() -> ListBucketInventoryConfigurationsOutputBuilder
pub fn builder() -> ListBucketInventoryConfigurationsOutputBuilder
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
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl PartialEq for ListBucketInventoryConfigurationsOutput
impl PartialEq for ListBucketInventoryConfigurationsOutput
Source§fn eq(&self, other: &ListBucketInventoryConfigurationsOutput) -> bool
fn eq(&self, other: &ListBucketInventoryConfigurationsOutput) -> bool
self
and other
values to be equal, and is used by ==
.Source§impl RequestId for ListBucketInventoryConfigurationsOutput
impl RequestId for ListBucketInventoryConfigurationsOutput
Source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.Source§impl RequestIdExt for ListBucketInventoryConfigurationsOutput
impl RequestIdExt for ListBucketInventoryConfigurationsOutput
Source§fn extended_request_id(&self) -> Option<&str>
fn extended_request_id(&self) -> Option<&str>
impl StructuralPartialEq for ListBucketInventoryConfigurationsOutput
Auto Trait Implementations§
impl Freeze for ListBucketInventoryConfigurationsOutput
impl RefUnwindSafe for ListBucketInventoryConfigurationsOutput
impl Send for ListBucketInventoryConfigurationsOutput
impl Sync for ListBucketInventoryConfigurationsOutput
impl Unpin for ListBucketInventoryConfigurationsOutput
impl UnwindSafe for ListBucketInventoryConfigurationsOutput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more