Struct aws_sdk_s3control::types::StorageLensConfiguration
source · #[non_exhaustive]pub struct StorageLensConfiguration { /* private fields */ }
Expand description
A container for the Amazon S3 Storage Lens configuration.
Implementations§
source§impl StorageLensConfiguration
impl StorageLensConfiguration
sourcepub fn account_level(&self) -> Option<&AccountLevel>
pub fn account_level(&self) -> Option<&AccountLevel>
A container for all the account-level configurations of your S3 Storage Lens configuration.
sourcepub fn include(&self) -> Option<&Include>
pub fn include(&self) -> Option<&Include>
A container for what is included in this configuration. This container can only be valid if there is no Exclude
container submitted, and it's not empty.
sourcepub fn exclude(&self) -> Option<&Exclude>
pub fn exclude(&self) -> Option<&Exclude>
A container for what is excluded in this configuration. This container can only be valid if there is no Include
container submitted, and it's not empty.
sourcepub fn data_export(&self) -> Option<&StorageLensDataExport>
pub fn data_export(&self) -> Option<&StorageLensDataExport>
A container to specify the properties of your S3 Storage Lens metrics export including, the destination, schema and format.
sourcepub fn is_enabled(&self) -> bool
pub fn is_enabled(&self) -> bool
A container for whether the S3 Storage Lens configuration is enabled.
sourcepub fn aws_org(&self) -> Option<&StorageLensAwsOrg>
pub fn aws_org(&self) -> Option<&StorageLensAwsOrg>
A container for the Amazon Web Services organization for this S3 Storage Lens configuration.
sourcepub fn storage_lens_arn(&self) -> Option<&str>
pub fn storage_lens_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the S3 Storage Lens configuration. This property is read-only and follows the following format: arn:aws:s3:us-east-1:example-account-id:storage-lens/your-dashboard-name
source§impl StorageLensConfiguration
impl StorageLensConfiguration
sourcepub fn builder() -> StorageLensConfigurationBuilder
pub fn builder() -> StorageLensConfigurationBuilder
Creates a new builder-style object to manufacture StorageLensConfiguration
.
Trait Implementations§
source§impl Clone for StorageLensConfiguration
impl Clone for StorageLensConfiguration
source§fn clone(&self) -> StorageLensConfiguration
fn clone(&self) -> StorageLensConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StorageLensConfiguration
impl Debug for StorageLensConfiguration
source§impl PartialEq<StorageLensConfiguration> for StorageLensConfiguration
impl PartialEq<StorageLensConfiguration> for StorageLensConfiguration
source§fn eq(&self, other: &StorageLensConfiguration) -> bool
fn eq(&self, other: &StorageLensConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.