#[non_exhaustive]pub struct BucketCountBySharedAccessType {
pub external: Option<i64>,
pub internal: Option<i64>,
pub not_shared: Option<i64>,
pub unknown: Option<i64>,
}
Expand description
Provides information about the number of S3 buckets that are or aren't shared with other Amazon Web Services accounts, Amazon CloudFront origin access identities (OAIs), or CloudFront origin access controls (OACs). In this data, an Amazon Macie organization is defined as a set of Macie accounts that are centrally managed as a group of related accounts through Organizations or by Macie invitation.
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.external: Option<i64>
The total number of buckets that are shared with one or more of the following or any combination of the following: an Amazon CloudFront OAI, a CloudFront OAC, or an Amazon Web Services account that isn't in the same Amazon Macie organization.
internal: Option<i64>
The total number of buckets that are shared with one or more Amazon Web Services accounts in the same Amazon Macie organization. These buckets aren't shared with Amazon CloudFront OAIs or OACs.
The total number of buckets that aren't shared with other Amazon Web Services accounts, Amazon CloudFront OAIs, or CloudFront OACs.
unknown: Option<i64>
The total number of buckets that Amazon Macie wasn't able to evaluate shared access settings for. Macie can't determine whether these buckets are shared with other Amazon Web Services accounts, Amazon CloudFront OAIs, or CloudFront OACs.
Implementations§
sourcepub fn external(&self) -> Option<i64>
pub fn external(&self) -> Option<i64>
The total number of buckets that are shared with one or more of the following or any combination of the following: an Amazon CloudFront OAI, a CloudFront OAC, or an Amazon Web Services account that isn't in the same Amazon Macie organization.
sourcepub fn internal(&self) -> Option<i64>
pub fn internal(&self) -> Option<i64>
The total number of buckets that are shared with one or more Amazon Web Services accounts in the same Amazon Macie organization. These buckets aren't shared with Amazon CloudFront OAIs or OACs.
The total number of buckets that aren't shared with other Amazon Web Services accounts, Amazon CloudFront OAIs, or CloudFront OACs.
sourcepub fn builder() -> BucketCountBySharedAccessTypeBuilder
pub fn builder() -> BucketCountBySharedAccessTypeBuilder
Creates a new builder-style object to manufacture BucketCountBySharedAccessType
.
Trait Implementations§
source§fn clone(&self) -> BucketCountBySharedAccessType
fn clone(&self) -> BucketCountBySharedAccessType
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§fn eq(&self, other: &BucketCountBySharedAccessType) -> bool
fn eq(&self, other: &BucketCountBySharedAccessType) -> bool
self
and other
values to be equal, and is used
by ==
.