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
impl StructuralPartialEq for RedactionConfig
Auto Trait Implementations§
impl Freeze for RedactionConfig
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more