Struct aws_sdk_macie2::types::SensitivityAggregations
source · #[non_exhaustive]pub struct SensitivityAggregations {
pub classifiable_size_in_bytes: Option<i64>,
pub publicly_accessible_count: Option<i64>,
pub total_count: Option<i64>,
pub total_size_in_bytes: Option<i64>,
}
Expand description
Provides aggregated statistical data for sensitive data discovery metrics that apply to S3 buckets. Each field contains aggregated data for all the buckets that have a sensitivity score (sensitivityScore) of a specified value or within a specified range (BucketStatisticsBySensitivity). If automated sensitive data discovery is currently disabled for your account, the value for each field is 0.
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.classifiable_size_in_bytes: Option<i64>
The total storage size, in bytes, of all the objects that Amazon Macie can analyze in the buckets. These objects use a supported storage class and have a file name extension for a supported file or storage format.
If versioning is enabled for any of the buckets, this value is based on the size of the latest version of each applicable object in the buckets. This value doesn't reflect the storage size of all versions of all applicable objects in the buckets.
publicly_accessible_count: Option<i64>
The total number of buckets that are publicly accessible due to a combination of permissions settings for each bucket.
total_count: Option<i64>
The total number of buckets.
total_size_in_bytes: Option<i64>
The total storage size, in bytes, of the buckets.
If versioning is enabled for any of the buckets, this value is based on the size of the latest version of each object in the buckets. This value doesn't reflect the storage size of all versions of the objects in the buckets.
Implementations§
source§impl SensitivityAggregations
impl SensitivityAggregations
sourcepub fn classifiable_size_in_bytes(&self) -> Option<i64>
pub fn classifiable_size_in_bytes(&self) -> Option<i64>
The total storage size, in bytes, of all the objects that Amazon Macie can analyze in the buckets. These objects use a supported storage class and have a file name extension for a supported file or storage format.
If versioning is enabled for any of the buckets, this value is based on the size of the latest version of each applicable object in the buckets. This value doesn't reflect the storage size of all versions of all applicable objects in the buckets.
sourcepub fn publicly_accessible_count(&self) -> Option<i64>
pub fn publicly_accessible_count(&self) -> Option<i64>
The total number of buckets that are publicly accessible due to a combination of permissions settings for each bucket.
sourcepub fn total_count(&self) -> Option<i64>
pub fn total_count(&self) -> Option<i64>
The total number of buckets.
sourcepub fn total_size_in_bytes(&self) -> Option<i64>
pub fn total_size_in_bytes(&self) -> Option<i64>
The total storage size, in bytes, of the buckets.
If versioning is enabled for any of the buckets, this value is based on the size of the latest version of each object in the buckets. This value doesn't reflect the storage size of all versions of the objects in the buckets.
source§impl SensitivityAggregations
impl SensitivityAggregations
sourcepub fn builder() -> SensitivityAggregationsBuilder
pub fn builder() -> SensitivityAggregationsBuilder
Creates a new builder-style object to manufacture SensitivityAggregations
.
Trait Implementations§
source§impl Clone for SensitivityAggregations
impl Clone for SensitivityAggregations
source§fn clone(&self) -> SensitivityAggregations
fn clone(&self) -> SensitivityAggregations
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SensitivityAggregations
impl Debug for SensitivityAggregations
source§impl PartialEq for SensitivityAggregations
impl PartialEq for SensitivityAggregations
source§fn eq(&self, other: &SensitivityAggregations) -> bool
fn eq(&self, other: &SensitivityAggregations) -> bool
self
and other
values to be equal, and is used
by ==
.