Struct aws_sdk_macie2::types::BucketCountByEncryptionType
source · #[non_exhaustive]pub struct BucketCountByEncryptionType { /* private fields */ }
Expand description
Provides information about the number of S3 buckets whose settings do or don't specify default server-side encryption behavior for objects that are added to the buckets. For detailed information about these settings, see Setting default server-side encryption behavior for Amazon S3 buckets in the Amazon Simple Storage Service User Guide.
Implementations§
source§impl BucketCountByEncryptionType
impl BucketCountByEncryptionType
sourcepub fn kms_managed(&self) -> i64
pub fn kms_managed(&self) -> i64
The total number of buckets whose default encryption settings are configured to encrypt new objects with an Amazon Web Services managed KMS key or a customer managed KMS key. By default, these buckets encrypt new objects automatically using SSE-KMS encryption.
sourcepub fn s3_managed(&self) -> i64
pub fn s3_managed(&self) -> i64
The total number of buckets whose default encryption settings are configured to encrypt new objects with an Amazon S3 managed key. By default, these buckets encrypt new objects automatically using SSE-S3 encryption.
sourcepub fn unencrypted(&self) -> i64
pub fn unencrypted(&self) -> i64
The total number of buckets that don't specify default server-side encryption behavior for new objects. Default encryption settings aren't configured for these buckets.
source§impl BucketCountByEncryptionType
impl BucketCountByEncryptionType
sourcepub fn builder() -> BucketCountByEncryptionTypeBuilder
pub fn builder() -> BucketCountByEncryptionTypeBuilder
Creates a new builder-style object to manufacture BucketCountByEncryptionType
.
Trait Implementations§
source§impl Clone for BucketCountByEncryptionType
impl Clone for BucketCountByEncryptionType
source§fn clone(&self) -> BucketCountByEncryptionType
fn clone(&self) -> BucketCountByEncryptionType
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BucketCountByEncryptionType
impl Debug for BucketCountByEncryptionType
source§impl PartialEq<BucketCountByEncryptionType> for BucketCountByEncryptionType
impl PartialEq<BucketCountByEncryptionType> for BucketCountByEncryptionType
source§fn eq(&self, other: &BucketCountByEncryptionType) -> bool
fn eq(&self, other: &BucketCountByEncryptionType) -> bool
self
and other
values to be equal, and is used
by ==
.