Struct aws_sdk_macie2::model::BucketCountByEncryptionType
source · #[non_exhaustive]pub struct BucketCountByEncryptionType { /* private fields */ }
Expand description
Provides information about the number of S3 buckets that use certain types of server-side encryption by default or don't encrypt new objects by default. 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 that use an KMS key to encrypt new objects by default, either an Amazon Web Services managed key or a customer managed key. These buckets use KMS encryption (SSE-KMS) by default.
sourcepub fn s3_managed(&self) -> i64
pub fn s3_managed(&self) -> i64
The total number of buckets that use an Amazon S3 managed key to encrypt new objects by default. These buckets use Amazon S3 managed encryption (SSE-S3) by default.
sourcepub fn unencrypted(&self) -> i64
pub fn unencrypted(&self) -> i64
The total number of buckets that don't encrypt new objects by default. Default encryption is disabled for these buckets.
source§impl BucketCountByEncryptionType
impl BucketCountByEncryptionType
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
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 ==
.