pub struct ClassificationResult {
pub additional_occurrences: Option<bool>,
pub custom_data_identifiers: Option<CustomDataIdentifiersResult>,
pub mime_type: Option<String>,
pub sensitive_data: Option<Vec<SensitiveDataResult>>,
pub size_classified: Option<i64>,
pub status: Option<ClassificationStatus>,
}
Expand description
Details about the sensitive data that was detected on the resource.
Fields§
§additional_occurrences: Option<bool>
Indicates whether there are additional occurrences of sensitive data that are not included in the finding. This occurs when the number of occurrences exceeds the maximum that can be included.
custom_data_identifiers: Option<CustomDataIdentifiersResult>
Provides details about sensitive data that was identified based on customer-defined configuration.
mime_type: Option<String>
The type of content that the finding applies to.
sensitive_data: Option<Vec<SensitiveDataResult>>
Provides details about sensitive data that was identified based on built-in configuration.
size_classified: Option<i64>
The total size in bytes of the affected data.
status: Option<ClassificationStatus>
The current status of the sensitive data detection.
Trait Implementations§
Source§impl Clone for ClassificationResult
impl Clone for ClassificationResult
Source§fn clone(&self) -> ClassificationResult
fn clone(&self) -> ClassificationResult
Returns a duplicate 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 Debug for ClassificationResult
impl Debug for ClassificationResult
Source§impl Default for ClassificationResult
impl Default for ClassificationResult
Source§fn default() -> ClassificationResult
fn default() -> ClassificationResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClassificationResult
impl<'de> Deserialize<'de> for ClassificationResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ClassificationResult
impl PartialEq for ClassificationResult
Source§impl Serialize for ClassificationResult
impl Serialize for ClassificationResult
impl StructuralPartialEq for ClassificationResult
Auto Trait Implementations§
impl Freeze for ClassificationResult
impl RefUnwindSafe for ClassificationResult
impl Send for ClassificationResult
impl Sync for ClassificationResult
impl Unpin for ClassificationResult
impl UnwindSafe for ClassificationResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more