amazonka-transcribe-2.0: Amazon Transcribe Service SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Transcribe.Types.ContentRedaction

Description

 
Synopsis

Documentation

data ContentRedaction Source #

Makes it possible to redact or flag specified personally identifiable information (PII) in your transcript. If you use ContentRedaction, you must also include the sub-parameters: PiiEntityTypes, RedactionOutput, and RedactionType.

See: newContentRedaction smart constructor.

Constructors

ContentRedaction' 

Fields

  • piiEntityTypes :: Maybe [PiiEntityType]

    Specify which types of personally identifiable information (PII) you want to redact in your transcript. You can include as many types as you'd like, or you can select ALL.

  • redactionType :: RedactionType

    Specify the category of information you want to redact; PII (personally identifiable information) is the only valid value. You can use PiiEntityTypes to choose which types of PII you want to redact.

  • redactionOutput :: RedactionOutput

    Specify if you want only a redacted transcript, or if you want a redacted and an unredacted transcript.

    When you choose redacted Amazon Transcribe creates only a redacted transcript.

    When you choose redacted_and_unredacted Amazon Transcribe creates a redacted and an unredacted transcript (as two separate files).

Instances

Instances details
FromJSON ContentRedaction Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ContentRedaction

ToJSON ContentRedaction Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ContentRedaction

Generic ContentRedaction Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ContentRedaction

Associated Types

type Rep ContentRedaction :: Type -> Type #

Read ContentRedaction Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ContentRedaction

Show ContentRedaction Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ContentRedaction

NFData ContentRedaction Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ContentRedaction

Methods

rnf :: ContentRedaction -> () #

Eq ContentRedaction Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ContentRedaction

Hashable ContentRedaction Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ContentRedaction

type Rep ContentRedaction Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ContentRedaction

type Rep ContentRedaction = D1 ('MetaData "ContentRedaction" "Amazonka.Transcribe.Types.ContentRedaction" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ContentRedaction'" 'PrefixI 'True) (S1 ('MetaSel ('Just "piiEntityTypes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [PiiEntityType])) :*: (S1 ('MetaSel ('Just "redactionType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RedactionType) :*: S1 ('MetaSel ('Just "redactionOutput") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RedactionOutput))))

newContentRedaction Source #

Create a value of ContentRedaction with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:piiEntityTypes:ContentRedaction', contentRedaction_piiEntityTypes - Specify which types of personally identifiable information (PII) you want to redact in your transcript. You can include as many types as you'd like, or you can select ALL.

$sel:redactionType:ContentRedaction', contentRedaction_redactionType - Specify the category of information you want to redact; PII (personally identifiable information) is the only valid value. You can use PiiEntityTypes to choose which types of PII you want to redact.

$sel:redactionOutput:ContentRedaction', contentRedaction_redactionOutput - Specify if you want only a redacted transcript, or if you want a redacted and an unredacted transcript.

When you choose redacted Amazon Transcribe creates only a redacted transcript.

When you choose redacted_and_unredacted Amazon Transcribe creates a redacted and an unredacted transcript (as two separate files).

contentRedaction_piiEntityTypes :: Lens' ContentRedaction (Maybe [PiiEntityType]) Source #

Specify which types of personally identifiable information (PII) you want to redact in your transcript. You can include as many types as you'd like, or you can select ALL.

contentRedaction_redactionType :: Lens' ContentRedaction RedactionType Source #

Specify the category of information you want to redact; PII (personally identifiable information) is the only valid value. You can use PiiEntityTypes to choose which types of PII you want to redact.

contentRedaction_redactionOutput :: Lens' ContentRedaction RedactionOutput Source #

Specify if you want only a redacted transcript, or if you want a redacted and an unredacted transcript.

When you choose redacted Amazon Transcribe creates only a redacted transcript.

When you choose redacted_and_unredacted Amazon Transcribe creates a redacted and an unredacted transcript (as two separate files).