Struct aws_sdk_s3::model::InventoryDestination
source · [−]#[non_exhaustive]pub struct InventoryDestination {
pub s3_bucket_destination: Option<InventoryS3BucketDestination>,
}
Expand description
Specifies the inventory configuration for an Amazon S3 bucket.
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.s3_bucket_destination: Option<InventoryS3BucketDestination>
Contains the bucket name, file format, bucket owner (optional), and prefix (optional) where inventory results are published.
Implementations
sourceimpl InventoryDestination
impl InventoryDestination
sourcepub fn s3_bucket_destination(&self) -> Option<&InventoryS3BucketDestination>
pub fn s3_bucket_destination(&self) -> Option<&InventoryS3BucketDestination>
Contains the bucket name, file format, bucket owner (optional), and prefix (optional) where inventory results are published.
sourceimpl InventoryDestination
impl InventoryDestination
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InventoryDestination
.
Trait Implementations
sourceimpl Clone for InventoryDestination
impl Clone for InventoryDestination
sourcefn clone(&self) -> InventoryDestination
fn clone(&self) -> InventoryDestination
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 more
sourceimpl Debug for InventoryDestination
impl Debug for InventoryDestination
sourceimpl PartialEq<InventoryDestination> for InventoryDestination
impl PartialEq<InventoryDestination> for InventoryDestination
sourcefn eq(&self, other: &InventoryDestination) -> bool
fn eq(&self, other: &InventoryDestination) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &InventoryDestination) -> bool
fn ne(&self, other: &InventoryDestination) -> bool
This method tests for !=
.
impl StructuralPartialEq for InventoryDestination
Auto Trait Implementations
impl RefUnwindSafe for InventoryDestination
impl Send for InventoryDestination
impl Sync for InventoryDestination
impl Unpin for InventoryDestination
impl UnwindSafe for InventoryDestination
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more