Struct aws_sdk_macie2::model::BucketCountByEncryptionType
source · [−]#[non_exhaustive]pub struct BucketCountByEncryptionType {
pub kms_managed: i64,
pub s3_managed: i64,
pub unencrypted: i64,
pub unknown: i64,
}
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.
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.kms_managed: 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.
s3_managed: 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.
unencrypted: i64
The total number of buckets that don't encrypt new objects by default. Default encryption is disabled for these buckets.
unknown: i64
The total number of buckets that Amazon Macie doesn't have current encryption metadata for. Macie can't provide current data about the default encryption settings for these buckets.
Implementations
sourceimpl 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.
sourceimpl BucketCountByEncryptionType
impl BucketCountByEncryptionType
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BucketCountByEncryptionType
Trait Implementations
sourceimpl Clone for BucketCountByEncryptionType
impl Clone for BucketCountByEncryptionType
sourcefn clone(&self) -> BucketCountByEncryptionType
fn clone(&self) -> BucketCountByEncryptionType
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 BucketCountByEncryptionType
impl Debug for BucketCountByEncryptionType
sourceimpl PartialEq<BucketCountByEncryptionType> for BucketCountByEncryptionType
impl PartialEq<BucketCountByEncryptionType> for BucketCountByEncryptionType
sourcefn eq(&self, other: &BucketCountByEncryptionType) -> bool
fn eq(&self, other: &BucketCountByEncryptionType) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &BucketCountByEncryptionType) -> bool
fn ne(&self, other: &BucketCountByEncryptionType) -> bool
This method tests for !=
.
impl StructuralPartialEq for BucketCountByEncryptionType
Auto Trait Implementations
impl RefUnwindSafe for BucketCountByEncryptionType
impl Send for BucketCountByEncryptionType
impl Sync for BucketCountByEncryptionType
impl Unpin for BucketCountByEncryptionType
impl UnwindSafe for BucketCountByEncryptionType
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> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
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