Struct aws_sdk_s3::types::InventoryS3BucketDestination
source · #[non_exhaustive]pub struct InventoryS3BucketDestination { /* private fields */ }
Expand description
Contains the bucket name, file format, bucket owner (optional), and prefix (optional) where inventory results are published.
Implementations§
source§impl InventoryS3BucketDestination
impl InventoryS3BucketDestination
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The account ID that owns the destination S3 bucket. If no account ID is provided, the owner is not validated before exporting data.
Although this value is optional, we strongly recommend that you set it to help prevent problems if the destination bucket ownership changes.
sourcepub fn bucket(&self) -> Option<&str>
pub fn bucket(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the bucket where inventory results will be published.
sourcepub fn format(&self) -> Option<&InventoryFormat>
pub fn format(&self) -> Option<&InventoryFormat>
Specifies the output format of the inventory results.
sourcepub fn encryption(&self) -> Option<&InventoryEncryption>
pub fn encryption(&self) -> Option<&InventoryEncryption>
Contains the type of server-side encryption used to encrypt the inventory results.
source§impl InventoryS3BucketDestination
impl InventoryS3BucketDestination
sourcepub fn builder() -> InventoryS3BucketDestinationBuilder
pub fn builder() -> InventoryS3BucketDestinationBuilder
Creates a new builder-style object to manufacture InventoryS3BucketDestination
.
Trait Implementations§
source§impl Clone for InventoryS3BucketDestination
impl Clone for InventoryS3BucketDestination
source§fn clone(&self) -> InventoryS3BucketDestination
fn clone(&self) -> InventoryS3BucketDestination
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 moresource§impl Debug for InventoryS3BucketDestination
impl Debug for InventoryS3BucketDestination
source§impl PartialEq<InventoryS3BucketDestination> for InventoryS3BucketDestination
impl PartialEq<InventoryS3BucketDestination> for InventoryS3BucketDestination
source§fn eq(&self, other: &InventoryS3BucketDestination) -> bool
fn eq(&self, other: &InventoryS3BucketDestination) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.