#[non_exhaustive]pub struct BucketStatisticsBySensitivity { /* private fields */ }
Expand description
Provides aggregated statistical data for sensitive data discovery metrics that apply to S3 buckets, grouped by bucket sensitivity score (sensitivityScore). If automated sensitive data discovery is currently disabled for your account, the value for each metric is 0.
Implementations§
source§impl BucketStatisticsBySensitivity
impl BucketStatisticsBySensitivity
sourcepub fn classification_error(&self) -> Option<&SensitivityAggregations>
pub fn classification_error(&self) -> Option<&SensitivityAggregations>
The aggregated statistical data for all buckets that have a sensitivity score of -1.
sourcepub fn not_classified(&self) -> Option<&SensitivityAggregations>
pub fn not_classified(&self) -> Option<&SensitivityAggregations>
The aggregated statistical data for all buckets that have a sensitivity score of 50.
sourcepub fn not_sensitive(&self) -> Option<&SensitivityAggregations>
pub fn not_sensitive(&self) -> Option<&SensitivityAggregations>
The aggregated statistical data for all buckets that have a sensitivity score of 0-49.
sourcepub fn sensitive(&self) -> Option<&SensitivityAggregations>
pub fn sensitive(&self) -> Option<&SensitivityAggregations>
The aggregated statistical data for all buckets that have a sensitivity score of 51-100.
source§impl BucketStatisticsBySensitivity
impl BucketStatisticsBySensitivity
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BucketStatisticsBySensitivity
.
Trait Implementations§
source§impl Clone for BucketStatisticsBySensitivity
impl Clone for BucketStatisticsBySensitivity
source§fn clone(&self) -> BucketStatisticsBySensitivity
fn clone(&self) -> BucketStatisticsBySensitivity
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<BucketStatisticsBySensitivity> for BucketStatisticsBySensitivity
impl PartialEq<BucketStatisticsBySensitivity> for BucketStatisticsBySensitivity
source§fn eq(&self, other: &BucketStatisticsBySensitivity) -> bool
fn eq(&self, other: &BucketStatisticsBySensitivity) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.