Struct aws_sdk_comprehend::types::RedactionConfig
source · #[non_exhaustive]pub struct RedactionConfig {
pub pii_entity_types: Option<Vec<PiiEntityType>>,
pub mask_mode: Option<PiiEntitiesDetectionMaskMode>,
pub mask_character: Option<String>,
}Expand description
Provides configuration parameters for PII entity redaction.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.pii_entity_types: Option<Vec<PiiEntityType>>An array of the types of PII entities that Amazon Comprehend detects in the input text for your request.
mask_mode: Option<PiiEntitiesDetectionMaskMode>Specifies whether the PII entity is redacted with the mask character or the entity type.
mask_character: Option<String>A character that replaces each character in the redacted PII entity.
Implementations§
source§impl RedactionConfig
impl RedactionConfig
sourcepub fn pii_entity_types(&self) -> Option<&[PiiEntityType]>
pub fn pii_entity_types(&self) -> Option<&[PiiEntityType]>
An array of the types of PII entities that Amazon Comprehend detects in the input text for your request.
sourcepub fn mask_mode(&self) -> Option<&PiiEntitiesDetectionMaskMode>
pub fn mask_mode(&self) -> Option<&PiiEntitiesDetectionMaskMode>
Specifies whether the PII entity is redacted with the mask character or the entity type.
sourcepub fn mask_character(&self) -> Option<&str>
pub fn mask_character(&self) -> Option<&str>
A character that replaces each character in the redacted PII entity.
source§impl RedactionConfig
impl RedactionConfig
sourcepub fn builder() -> RedactionConfigBuilder
pub fn builder() -> RedactionConfigBuilder
Creates a new builder-style object to manufacture RedactionConfig.
Trait Implementations§
source§impl Clone for RedactionConfig
impl Clone for RedactionConfig
source§fn clone(&self) -> RedactionConfig
fn clone(&self) -> RedactionConfig
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 Debug for RedactionConfig
impl Debug for RedactionConfig
source§impl PartialEq for RedactionConfig
impl PartialEq for RedactionConfig
source§fn eq(&self, other: &RedactionConfig) -> bool
fn eq(&self, other: &RedactionConfig) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RedactionConfig
Auto Trait Implementations§
impl RefUnwindSafe for RedactionConfig
impl Send for RedactionConfig
impl Sync for RedactionConfig
impl Unpin for RedactionConfig
impl UnwindSafe for RedactionConfig
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