[][src]Struct rusoto_comprehend::RedactionConfig

pub struct RedactionConfig {
    pub mask_character: Option<String>,
    pub mask_mode: Option<String>,
    pub pii_entity_types: Option<Vec<String>>,
}

Provides configuration parameters for PII entity redaction.

Fields

mask_character: Option<String>

A character that replaces each character in the redacted PII entity.

mask_mode: Option<String>

Specifies whether the PII entity is redacted with the mask character or the entity type.

pii_entity_types: Option<Vec<String>>

An array of the types of PII entities that Amazon Comprehend detects in the input text for your request.

Trait Implementations

impl Clone for RedactionConfig[src]

impl Debug for RedactionConfig[src]

impl Default for RedactionConfig[src]

impl<'de> Deserialize<'de> for RedactionConfig[src]

impl PartialEq<RedactionConfig> for RedactionConfig[src]

impl Serialize for RedactionConfig[src]

impl StructuralPartialEq for RedactionConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.