[][src]Struct rusoto_transcribe::ContentRedaction

pub struct ContentRedaction {
    pub redaction_output: String,
    pub redaction_type: String,
}

Settings for content redaction within a transcription job.

Fields

redaction_output: String

The output transcript file stored in either the default S3 bucket or in a bucket you specify.

When you choose redacted Amazon Transcribe outputs only the redacted transcript.

When you choose redacted_and_unredacted Amazon Transcribe outputs both the redacted and unredacted transcripts.

redaction_type: String

Request parameter that defines the entities to be redacted. The only accepted value is PII.

Trait Implementations

impl Clone for ContentRedaction[src]

impl Debug for ContentRedaction[src]

impl Default for ContentRedaction[src]

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

impl PartialEq<ContentRedaction> for ContentRedaction[src]

impl Serialize for ContentRedaction[src]

impl StructuralPartialEq for ContentRedaction[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> 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.