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
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) -> &[PiiEntityType]
pub fn pii_entity_types(&self) -> &[PiiEntityType]
An array of the types of PII entities that Amazon Comprehend detects in the input text for your request.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .pii_entity_types.is_none()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
self
and other
values to be equal, and is used
by ==
.