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

Contents

Description

Derived from API version 2017-10-26 of the AWS service descriptions, licensed under Apache 2.0.

Amazon Transcribe offers three main types of batch transcription: Standard, Medical, and Call Analytics.

  • Standard transcriptions are the most common option. Refer to for details.
  • Medical transcriptions are tailored to medical professionals and incorporate medical terms. A common use case for this service is transcribing doctor-patient dialogue into after-visit notes. Refer to for details.
  • Call Analytics transcriptions are designed for use with call center audio on two different channels; if you're looking for insight into customer service calls, use this option. Refer to for details.
Synopsis

Service Configuration

defaultService :: Service Source #

API version 2017-10-26 of the Amazon Transcribe Service SDK configuration.

Errors

Error matchers are designed for use with the functions provided by Control.Exception.Lens. This allows catching (and rethrowing) service specific errors returned by Transcribe.

BadRequestException

_BadRequestException :: AsError a => Fold a ServiceError Source #

Your request didn't pass one or more validation tests. This can occur when the entity you're trying to delete doesn't exist or if it's in a non-terminal state (such as IN PROGRESS). See the exception message field for more information.

ConflictException

_ConflictException :: AsError a => Fold a ServiceError Source #

A resource already exists with this name. Resource names must be unique within an Amazon Web Services account.

InternalFailureException

_InternalFailureException :: AsError a => Fold a ServiceError Source #

There was an internal error. Check the error message, correct the issue, and try your request again.

LimitExceededException

_LimitExceededException :: AsError a => Fold a ServiceError Source #

You've either sent too many requests or your input file is too long. Wait before retrying your request, or use a smaller file and try your request again.

NotFoundException

_NotFoundException :: AsError a => Fold a ServiceError Source #

We can't find the requested resource. Check that the specified name is correct and try your request again.

Waiters

Waiters poll by repeatedly sending a request until some remote success condition configured by the Wait specification is fulfilled. The Wait specification determines how many attempts should be made, in addition to delay and retry strategies.

Operations

Some AWS operations return results that are incomplete and require subsequent requests in order to obtain the entire result set. The process of sending subsequent requests to continue where a previous request left off is called pagination. For example, the ListObjects operation of Amazon S3 returns up to 1000 objects at a time, and you must send subsequent requests with the appropriate Marker in order to retrieve the next page of results.

Operations that have an AWSPager instance can transparently perform subsequent requests, correctly setting Markers and other request facets to iterate through the entire result set of a truncated API operation. Operations which support this have an additional note in the documentation.

Many operations have the ability to filter results on the server side. See the individual operation parameters for details.

CreateCallAnalyticsCategory

data CreateCallAnalyticsCategory Source #

See: newCreateCallAnalyticsCategory smart constructor.

Instances

Instances details
ToJSON CreateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

ToHeaders CreateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

ToPath CreateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

ToQuery CreateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

AWSRequest CreateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

Generic CreateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

Associated Types

type Rep CreateCallAnalyticsCategory :: Type -> Type #

Read CreateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

Show CreateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

NFData CreateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

Eq CreateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

Hashable CreateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

type AWSResponse CreateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

type Rep CreateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

type Rep CreateCallAnalyticsCategory = D1 ('MetaData "CreateCallAnalyticsCategory" "Amazonka.Transcribe.CreateCallAnalyticsCategory" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "CreateCallAnalyticsCategory'" 'PrefixI 'True) (S1 ('MetaSel ('Just "inputType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe InputType)) :*: (S1 ('MetaSel ('Just "categoryName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "rules") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Rule)))))

newCreateCallAnalyticsCategory Source #

Create a value of CreateCallAnalyticsCategory 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:

CreateCallAnalyticsCategory, createCallAnalyticsCategory_inputType - Choose whether you want to create a streaming or a batch category for your Call Analytics transcription.

Specifying POST_CALL assigns your category to batch transcriptions; categories with this input type cannot be applied to streaming (real-time) transcriptions.

Specifying REAL_TIME assigns your category to streaming transcriptions; categories with this input type cannot be applied to batch (post-call) transcriptions.

If you do not include InputType, your category is created as a batch category by default.

CreateCallAnalyticsCategory, createCallAnalyticsCategory_categoryName - A unique name, chosen by you, for your Call Analytics category. It's helpful to use a detailed naming system that will make sense to you in the future. For example, it's better to use sentiment-positive-last30seconds for a category over a generic name like test-category.

Category names are case sensitive.

CreateCallAnalyticsCategory, createCallAnalyticsCategory_rules - Rules define a Call Analytics category. When creating a new category, you must create between 1 and 20 rules for that category. For each rule, you specify a filter you want applied to the attributes of a call. For example, you can choose a sentiment filter that detects if a customer's sentiment was positive during the last 30 seconds of the call.

data CreateCallAnalyticsCategoryResponse Source #

Instances

Instances details
Generic CreateCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

Read CreateCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

Show CreateCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

NFData CreateCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

Eq CreateCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

type Rep CreateCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateCallAnalyticsCategory

type Rep CreateCallAnalyticsCategoryResponse = D1 ('MetaData "CreateCallAnalyticsCategoryResponse" "Amazonka.Transcribe.CreateCallAnalyticsCategory" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "CreateCallAnalyticsCategoryResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "categoryProperties") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CategoryProperties)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateCallAnalyticsCategoryResponse Source #

Create a value of CreateCallAnalyticsCategoryResponse 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:categoryProperties:CreateCallAnalyticsCategoryResponse', createCallAnalyticsCategoryResponse_categoryProperties - Provides you with the properties of your new category, including its associated rules.

$sel:httpStatus:CreateCallAnalyticsCategoryResponse', createCallAnalyticsCategoryResponse_httpStatus - The response's http status code.

CreateLanguageModel

data CreateLanguageModel Source #

See: newCreateLanguageModel smart constructor.

Instances

Instances details
ToJSON CreateLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

ToHeaders CreateLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

ToPath CreateLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

ToQuery CreateLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

AWSRequest CreateLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

Associated Types

type AWSResponse CreateLanguageModel #

Generic CreateLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

Associated Types

type Rep CreateLanguageModel :: Type -> Type #

Read CreateLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

Show CreateLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

NFData CreateLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

Methods

rnf :: CreateLanguageModel -> () #

Eq CreateLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

Hashable CreateLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

type AWSResponse CreateLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

type Rep CreateLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

type Rep CreateLanguageModel = D1 ('MetaData "CreateLanguageModel" "Amazonka.Transcribe.CreateLanguageModel" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "CreateLanguageModel'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Tag))) :*: S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 CLMLanguageCode)) :*: (S1 ('MetaSel ('Just "baseModelName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 BaseModelName) :*: (S1 ('MetaSel ('Just "modelName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "inputDataConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 InputDataConfig)))))

newCreateLanguageModel Source #

Create a value of CreateLanguageModel 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:

CreateLanguageModel, createLanguageModel_tags - Adds one or more custom tags, each in the form of a key:value pair, to a new custom language model at the time you create this new model.

To learn more about using tags with Amazon Transcribe, refer to Tagging resources.

CreateLanguageModel, createLanguageModel_languageCode - The language code that represents the language of your model. Each custom language model must contain terms in only one language, and the language you select for your custom language model must match the language of your training and tuning data.

For a list of supported languages and their associated language codes, refer to the Supported languages table. Note that US English (en-US) is the only language supported with Amazon Transcribe Medical.

A custom language model can only be used to transcribe files in the same language as the model. For example, if you create a custom language model using US English (en-US), you can only apply this model to files that contain English audio.

CreateLanguageModel, createLanguageModel_baseModelName - The Amazon Transcribe standard language model, or base model, used to create your custom language model. Amazon Transcribe offers two options for base models: Wideband and Narrowband.

If the audio you want to transcribe has a sample rate of 16,000 Hz or greater, choose WideBand. To transcribe audio with a sample rate less than 16,000 Hz, choose NarrowBand.

CreateLanguageModel, createLanguageModel_modelName - A unique name, chosen by you, for your custom language model.

This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account. If you try to create a new custom language model with the same name as an existing custom language model, you get a ConflictException error.

CreateLanguageModel, createLanguageModel_inputDataConfig - Contains the Amazon S3 location of the training data you want to use to create a new custom language model, and permissions to access this location.

When using InputDataConfig, you must include these sub-parameters: S3Uri, which is the Amazon S3 location of your training data, and DataAccessRoleArn, which is the Amazon Resource Name (ARN) of the role that has permission to access your specified Amazon S3 location. You can optionally include TuningDataS3Uri, which is the Amazon S3 location of your tuning data. If you specify different Amazon S3 locations for training and tuning data, the ARN you use must have permissions to access both locations.

data CreateLanguageModelResponse Source #

See: newCreateLanguageModelResponse smart constructor.

Instances

Instances details
Generic CreateLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

Associated Types

type Rep CreateLanguageModelResponse :: Type -> Type #

Read CreateLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

Show CreateLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

NFData CreateLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

Eq CreateLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

type Rep CreateLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateLanguageModel

type Rep CreateLanguageModelResponse = D1 ('MetaData "CreateLanguageModelResponse" "Amazonka.Transcribe.CreateLanguageModel" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "CreateLanguageModelResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "baseModelName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe BaseModelName)) :*: (S1 ('MetaSel ('Just "inputDataConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe InputDataConfig)) :*: S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CLMLanguageCode)))) :*: (S1 ('MetaSel ('Just "modelName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "modelStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelStatus)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))

newCreateLanguageModelResponse Source #

Create a value of CreateLanguageModelResponse 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:

CreateLanguageModel, createLanguageModelResponse_baseModelName - The Amazon Transcribe standard language model, or base model, you specified when creating your custom language model.

CreateLanguageModel, createLanguageModelResponse_inputDataConfig - Lists your data access role ARN (Amazon Resource Name) and the Amazon S3 locations you provided for your training (S3Uri) and tuning (TuningDataS3Uri) data.

CreateLanguageModel, createLanguageModelResponse_languageCode - The language code you selected for your custom language model.

CreateLanguageModel, createLanguageModelResponse_modelName - The name of your custom language model.

CreateLanguageModelResponse, createLanguageModelResponse_modelStatus - The status of your custom language model. When the status displays as COMPLETED, your model is ready to use.

$sel:httpStatus:CreateLanguageModelResponse', createLanguageModelResponse_httpStatus - The response's http status code.

CreateMedicalVocabulary

data CreateMedicalVocabulary Source #

See: newCreateMedicalVocabulary smart constructor.

Instances

Instances details
ToJSON CreateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

ToHeaders CreateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

ToPath CreateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

ToQuery CreateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

AWSRequest CreateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

Generic CreateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

Associated Types

type Rep CreateMedicalVocabulary :: Type -> Type #

Read CreateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

Show CreateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

NFData CreateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

Methods

rnf :: CreateMedicalVocabulary -> () #

Eq CreateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

Hashable CreateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

type AWSResponse CreateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

type Rep CreateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

type Rep CreateMedicalVocabulary = D1 ('MetaData "CreateMedicalVocabulary" "Amazonka.Transcribe.CreateMedicalVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "CreateMedicalVocabulary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Tag))) :*: S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 LanguageCode) :*: S1 ('MetaSel ('Just "vocabularyFileUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newCreateMedicalVocabulary Source #

Create a value of CreateMedicalVocabulary 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:

CreateMedicalVocabulary, createMedicalVocabulary_tags - Adds one or more custom tags, each in the form of a key:value pair, to a new custom medical vocabulary at the time you create this new custom vocabulary.

To learn more about using tags with Amazon Transcribe, refer to Tagging resources.

CreateMedicalVocabulary, createMedicalVocabulary_vocabularyName - A unique name, chosen by you, for your new custom medical vocabulary.

This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account. If you try to create a new custom medical vocabulary with the same name as an existing custom medical vocabulary, you get a ConflictException error.

CreateMedicalVocabulary, createMedicalVocabulary_languageCode - The language code that represents the language of the entries in your custom vocabulary. US English (en-US) is the only language supported with Amazon Transcribe Medical.

$sel:vocabularyFileUri:CreateMedicalVocabulary', createMedicalVocabulary_vocabularyFileUri - The Amazon S3 location (URI) of the text file that contains your custom medical vocabulary. The URI must be in the same Amazon Web Services Region as the resource you're calling.

Here's an example URI path: s3://DOC-EXAMPLE-BUCKET/my-vocab-file.txt

data CreateMedicalVocabularyResponse Source #

See: newCreateMedicalVocabularyResponse smart constructor.

Instances

Instances details
Generic CreateMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

Associated Types

type Rep CreateMedicalVocabularyResponse :: Type -> Type #

Read CreateMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

Show CreateMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

NFData CreateMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

Eq CreateMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

type Rep CreateMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateMedicalVocabulary

type Rep CreateMedicalVocabularyResponse = D1 ('MetaData "CreateMedicalVocabularyResponse" "Amazonka.Transcribe.CreateMedicalVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "CreateMedicalVocabularyResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "failureReason") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode)) :*: S1 ('MetaSel ('Just "lastModifiedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: (S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "vocabularyState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VocabularyState)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))

newCreateMedicalVocabularyResponse Source #

Create a value of CreateMedicalVocabularyResponse 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:

CreateMedicalVocabularyResponse, createMedicalVocabularyResponse_failureReason - If VocabularyState is FAILED, FailureReason contains information about why the medical transcription job request failed. See also: Common Errors.

CreateMedicalVocabulary, createMedicalVocabularyResponse_languageCode - The language code you selected for your custom medical vocabulary. US English (en-US) is the only language supported with Amazon Transcribe Medical.

CreateMedicalVocabularyResponse, createMedicalVocabularyResponse_lastModifiedTime - The date and time you created your custom medical vocabulary.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents 12:32 PM UTC-7 on May 4, 2022.

CreateMedicalVocabulary, createMedicalVocabularyResponse_vocabularyName - The name you chose for your custom medical vocabulary.

CreateMedicalVocabularyResponse, createMedicalVocabularyResponse_vocabularyState - The processing state of your custom medical vocabulary. If the state is READY, you can use the custom vocabulary in a StartMedicalTranscriptionJob request.

$sel:httpStatus:CreateMedicalVocabularyResponse', createMedicalVocabularyResponse_httpStatus - The response's http status code.

CreateVocabulary

data CreateVocabulary Source #

See: newCreateVocabulary smart constructor.

Instances

Instances details
ToJSON CreateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

ToHeaders CreateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

ToPath CreateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

ToQuery CreateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

AWSRequest CreateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

Associated Types

type AWSResponse CreateVocabulary #

Generic CreateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

Associated Types

type Rep CreateVocabulary :: Type -> Type #

Read CreateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

Show CreateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

NFData CreateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

Methods

rnf :: CreateVocabulary -> () #

Eq CreateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

Hashable CreateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

type AWSResponse CreateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

type Rep CreateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

type Rep CreateVocabulary = D1 ('MetaData "CreateVocabulary" "Amazonka.Transcribe.CreateVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "CreateVocabulary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "phrases") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Tag)))) :*: (S1 ('MetaSel ('Just "vocabularyFileUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 LanguageCode)))))

newCreateVocabulary Source #

Create a value of CreateVocabulary 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:phrases:CreateVocabulary', createVocabulary_phrases - Use this parameter if you want to create your custom vocabulary by including all desired terms, as comma-separated values, within your request. The other option for creating your custom vocabulary is to save your entries in a text file and upload them to an Amazon S3 bucket, then specify the location of your file using the VocabularyFileUri parameter.

Note that if you include Phrases in your request, you cannot use VocabularyFileUri; you must choose one or the other.

Each language has a character set that contains all allowed characters for that specific language. If you use unsupported characters, your custom vocabulary filter request fails. Refer to Character Sets for Custom Vocabularies to get the character set for your language.

CreateVocabulary, createVocabulary_tags - Adds one or more custom tags, each in the form of a key:value pair, to a new custom vocabulary at the time you create this new custom vocabulary.

To learn more about using tags with Amazon Transcribe, refer to Tagging resources.

$sel:vocabularyFileUri:CreateVocabulary', createVocabulary_vocabularyFileUri - The Amazon S3 location of the text file that contains your custom vocabulary. The URI must be located in the same Amazon Web Services Region as the resource you're calling.

Here's an example URI path: s3://DOC-EXAMPLE-BUCKET/my-vocab-file.txt

Note that if you include VocabularyFileUri in your request, you cannot use the Phrases flag; you must choose one or the other.

CreateVocabulary, createVocabulary_vocabularyName - A unique name, chosen by you, for your new custom vocabulary.

This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account. If you try to create a new custom vocabulary with the same name as an existing custom vocabulary, you get a ConflictException error.

CreateVocabulary, createVocabulary_languageCode - The language code that represents the language of the entries in your custom vocabulary. Each custom vocabulary must contain terms in only one language.

A custom vocabulary can only be used to transcribe files in the same language as the custom vocabulary. For example, if you create a custom vocabulary using US English (en-US), you can only apply this custom vocabulary to files that contain English audio.

For a list of supported languages and their associated language codes, refer to the Supported languages table.

data CreateVocabularyResponse Source #

See: newCreateVocabularyResponse smart constructor.

Instances

Instances details
Generic CreateVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

Associated Types

type Rep CreateVocabularyResponse :: Type -> Type #

Read CreateVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

Show CreateVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

NFData CreateVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

Eq CreateVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

type Rep CreateVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabulary

type Rep CreateVocabularyResponse = D1 ('MetaData "CreateVocabularyResponse" "Amazonka.Transcribe.CreateVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "CreateVocabularyResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "failureReason") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode)) :*: S1 ('MetaSel ('Just "lastModifiedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: (S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "vocabularyState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VocabularyState)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))

newCreateVocabularyResponse Source #

Create a value of CreateVocabularyResponse 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:

CreateVocabularyResponse, createVocabularyResponse_failureReason - If VocabularyState is FAILED, FailureReason contains information about why the custom vocabulary request failed. See also: Common Errors.

CreateVocabulary, createVocabularyResponse_languageCode - The language code you selected for your custom vocabulary.

CreateVocabularyResponse, createVocabularyResponse_lastModifiedTime - The date and time you created your custom vocabulary.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents 12:32 PM UTC-7 on May 4, 2022.

CreateVocabulary, createVocabularyResponse_vocabularyName - The name you chose for your custom vocabulary.

CreateVocabularyResponse, createVocabularyResponse_vocabularyState - The processing state of your custom vocabulary. If the state is READY, you can use the custom vocabulary in a StartTranscriptionJob request.

$sel:httpStatus:CreateVocabularyResponse', createVocabularyResponse_httpStatus - The response's http status code.

CreateVocabularyFilter

data CreateVocabularyFilter Source #

See: newCreateVocabularyFilter smart constructor.

Instances

Instances details
ToJSON CreateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

ToHeaders CreateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

ToPath CreateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

ToQuery CreateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

AWSRequest CreateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

Associated Types

type AWSResponse CreateVocabularyFilter #

Generic CreateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

Associated Types

type Rep CreateVocabularyFilter :: Type -> Type #

Read CreateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

Show CreateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

NFData CreateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

Methods

rnf :: CreateVocabularyFilter -> () #

Eq CreateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

Hashable CreateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

type AWSResponse CreateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

type Rep CreateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

type Rep CreateVocabularyFilter = D1 ('MetaData "CreateVocabularyFilter" "Amazonka.Transcribe.CreateVocabularyFilter" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "CreateVocabularyFilter'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Tag))) :*: S1 ('MetaSel ('Just "vocabularyFilterFileUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "words") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text))) :*: (S1 ('MetaSel ('Just "vocabularyFilterName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 LanguageCode)))))

newCreateVocabularyFilter Source #

Create a value of CreateVocabularyFilter 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:

CreateVocabularyFilter, createVocabularyFilter_tags - Adds one or more custom tags, each in the form of a key:value pair, to a new custom vocabulary filter at the time you create this new vocabulary filter.

To learn more about using tags with Amazon Transcribe, refer to Tagging resources.

$sel:vocabularyFilterFileUri:CreateVocabularyFilter', createVocabularyFilter_vocabularyFilterFileUri - The Amazon S3 location of the text file that contains your custom vocabulary filter terms. The URI must be located in the same Amazon Web Services Region as the resource you're calling.

Here's an example URI path: s3://DOC-EXAMPLE-BUCKET/my-vocab-filter-file.txt

Note that if you include VocabularyFilterFileUri in your request, you cannot use Words; you must choose one or the other.

$sel:words:CreateVocabularyFilter', createVocabularyFilter_words - Use this parameter if you want to create your custom vocabulary filter by including all desired terms, as comma-separated values, within your request. The other option for creating your vocabulary filter is to save your entries in a text file and upload them to an Amazon S3 bucket, then specify the location of your file using the VocabularyFilterFileUri parameter.

Note that if you include Words in your request, you cannot use VocabularyFilterFileUri; you must choose one or the other.

Each language has a character set that contains all allowed characters for that specific language. If you use unsupported characters, your custom vocabulary filter request fails. Refer to Character Sets for Custom Vocabularies to get the character set for your language.

CreateVocabularyFilter, createVocabularyFilter_vocabularyFilterName - A unique name, chosen by you, for your new custom vocabulary filter.

This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account. If you try to create a new custom vocabulary filter with the same name as an existing custom vocabulary filter, you get a ConflictException error.

CreateVocabularyFilter, createVocabularyFilter_languageCode - The language code that represents the language of the entries in your vocabulary filter. Each custom vocabulary filter must contain terms in only one language.

A custom vocabulary filter can only be used to transcribe files in the same language as the filter. For example, if you create a custom vocabulary filter using US English (en-US), you can only apply this filter to files that contain English audio.

For a list of supported languages and their associated language codes, refer to the Supported languages table.

data CreateVocabularyFilterResponse Source #

See: newCreateVocabularyFilterResponse smart constructor.

Instances

Instances details
Generic CreateVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

Associated Types

type Rep CreateVocabularyFilterResponse :: Type -> Type #

Read CreateVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

Show CreateVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

NFData CreateVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

Eq CreateVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

type Rep CreateVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.CreateVocabularyFilter

type Rep CreateVocabularyFilterResponse = D1 ('MetaData "CreateVocabularyFilterResponse" "Amazonka.Transcribe.CreateVocabularyFilter" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "CreateVocabularyFilterResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode)) :*: S1 ('MetaSel ('Just "lastModifiedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "vocabularyFilterName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newCreateVocabularyFilterResponse Source #

Create a value of CreateVocabularyFilterResponse 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:

CreateVocabularyFilter, createVocabularyFilterResponse_languageCode - The language code you selected for your custom vocabulary filter.

CreateVocabularyFilterResponse, createVocabularyFilterResponse_lastModifiedTime - The date and time you created your custom vocabulary filter.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents 12:32 PM UTC-7 on May 4, 2022.

CreateVocabularyFilter, createVocabularyFilterResponse_vocabularyFilterName - The name you chose for your custom vocabulary filter.

$sel:httpStatus:CreateVocabularyFilterResponse', createVocabularyFilterResponse_httpStatus - The response's http status code.

DeleteCallAnalyticsCategory

data DeleteCallAnalyticsCategory Source #

See: newDeleteCallAnalyticsCategory smart constructor.

Instances

Instances details
ToJSON DeleteCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

ToHeaders DeleteCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

ToPath DeleteCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

ToQuery DeleteCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

AWSRequest DeleteCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

Generic DeleteCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

Associated Types

type Rep DeleteCallAnalyticsCategory :: Type -> Type #

Read DeleteCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

Show DeleteCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

NFData DeleteCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

Eq DeleteCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

Hashable DeleteCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

type AWSResponse DeleteCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

type Rep DeleteCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

type Rep DeleteCallAnalyticsCategory = D1 ('MetaData "DeleteCallAnalyticsCategory" "Amazonka.Transcribe.DeleteCallAnalyticsCategory" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteCallAnalyticsCategory'" 'PrefixI 'True) (S1 ('MetaSel ('Just "categoryName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteCallAnalyticsCategory Source #

Create a value of DeleteCallAnalyticsCategory 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:

DeleteCallAnalyticsCategory, deleteCallAnalyticsCategory_categoryName - The name of the Call Analytics category you want to delete. Category names are case sensitive.

data DeleteCallAnalyticsCategoryResponse Source #

Instances

Instances details
Generic DeleteCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

Read DeleteCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

Show DeleteCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

NFData DeleteCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

Eq DeleteCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

type Rep DeleteCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsCategory

type Rep DeleteCallAnalyticsCategoryResponse = D1 ('MetaData "DeleteCallAnalyticsCategoryResponse" "Amazonka.Transcribe.DeleteCallAnalyticsCategory" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteCallAnalyticsCategoryResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteCallAnalyticsCategoryResponse Source #

Create a value of DeleteCallAnalyticsCategoryResponse 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:httpStatus:DeleteCallAnalyticsCategoryResponse', deleteCallAnalyticsCategoryResponse_httpStatus - The response's http status code.

DeleteCallAnalyticsJob

data DeleteCallAnalyticsJob Source #

See: newDeleteCallAnalyticsJob smart constructor.

Instances

Instances details
ToJSON DeleteCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

ToHeaders DeleteCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

ToPath DeleteCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

ToQuery DeleteCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

AWSRequest DeleteCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

Associated Types

type AWSResponse DeleteCallAnalyticsJob #

Generic DeleteCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

Associated Types

type Rep DeleteCallAnalyticsJob :: Type -> Type #

Read DeleteCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

Show DeleteCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

NFData DeleteCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

Methods

rnf :: DeleteCallAnalyticsJob -> () #

Eq DeleteCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

Hashable DeleteCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

type AWSResponse DeleteCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

type Rep DeleteCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

type Rep DeleteCallAnalyticsJob = D1 ('MetaData "DeleteCallAnalyticsJob" "Amazonka.Transcribe.DeleteCallAnalyticsJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteCallAnalyticsJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "callAnalyticsJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteCallAnalyticsJob Source #

Create a value of DeleteCallAnalyticsJob 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:

DeleteCallAnalyticsJob, deleteCallAnalyticsJob_callAnalyticsJobName - The name of the Call Analytics job you want to delete. Job names are case sensitive.

data DeleteCallAnalyticsJobResponse Source #

See: newDeleteCallAnalyticsJobResponse smart constructor.

Instances

Instances details
Generic DeleteCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

Associated Types

type Rep DeleteCallAnalyticsJobResponse :: Type -> Type #

Read DeleteCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

Show DeleteCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

NFData DeleteCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

Eq DeleteCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

type Rep DeleteCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteCallAnalyticsJob

type Rep DeleteCallAnalyticsJobResponse = D1 ('MetaData "DeleteCallAnalyticsJobResponse" "Amazonka.Transcribe.DeleteCallAnalyticsJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteCallAnalyticsJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteCallAnalyticsJobResponse Source #

Create a value of DeleteCallAnalyticsJobResponse 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:httpStatus:DeleteCallAnalyticsJobResponse', deleteCallAnalyticsJobResponse_httpStatus - The response's http status code.

DeleteLanguageModel

data DeleteLanguageModel Source #

See: newDeleteLanguageModel smart constructor.

Instances

Instances details
ToJSON DeleteLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

ToHeaders DeleteLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

ToPath DeleteLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

ToQuery DeleteLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

AWSRequest DeleteLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

Associated Types

type AWSResponse DeleteLanguageModel #

Generic DeleteLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

Associated Types

type Rep DeleteLanguageModel :: Type -> Type #

Read DeleteLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

Show DeleteLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

NFData DeleteLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

Methods

rnf :: DeleteLanguageModel -> () #

Eq DeleteLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

Hashable DeleteLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

type AWSResponse DeleteLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

type Rep DeleteLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

type Rep DeleteLanguageModel = D1 ('MetaData "DeleteLanguageModel" "Amazonka.Transcribe.DeleteLanguageModel" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteLanguageModel'" 'PrefixI 'True) (S1 ('MetaSel ('Just "modelName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteLanguageModel Source #

Create a value of DeleteLanguageModel 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:

DeleteLanguageModel, deleteLanguageModel_modelName - The name of the custom language model you want to delete. Model names are case sensitive.

data DeleteLanguageModelResponse Source #

See: newDeleteLanguageModelResponse smart constructor.

Instances

Instances details
Generic DeleteLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

Associated Types

type Rep DeleteLanguageModelResponse :: Type -> Type #

Read DeleteLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

Show DeleteLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

NFData DeleteLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

Eq DeleteLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

type Rep DeleteLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteLanguageModel

type Rep DeleteLanguageModelResponse = D1 ('MetaData "DeleteLanguageModelResponse" "Amazonka.Transcribe.DeleteLanguageModel" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteLanguageModelResponse'" 'PrefixI 'False) (U1 :: Type -> Type))

newDeleteLanguageModelResponse :: DeleteLanguageModelResponse Source #

Create a value of DeleteLanguageModelResponse with all optional fields omitted.

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

DeleteMedicalTranscriptionJob

data DeleteMedicalTranscriptionJob Source #

See: newDeleteMedicalTranscriptionJob smart constructor.

Instances

Instances details
ToJSON DeleteMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

ToHeaders DeleteMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

ToPath DeleteMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

ToQuery DeleteMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

AWSRequest DeleteMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

Generic DeleteMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

Associated Types

type Rep DeleteMedicalTranscriptionJob :: Type -> Type #

Read DeleteMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

Show DeleteMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

NFData DeleteMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

Eq DeleteMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

Hashable DeleteMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

type AWSResponse DeleteMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

type Rep DeleteMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

type Rep DeleteMedicalTranscriptionJob = D1 ('MetaData "DeleteMedicalTranscriptionJob" "Amazonka.Transcribe.DeleteMedicalTranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteMedicalTranscriptionJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "medicalTranscriptionJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteMedicalTranscriptionJob Source #

Create a value of DeleteMedicalTranscriptionJob 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:

DeleteMedicalTranscriptionJob, deleteMedicalTranscriptionJob_medicalTranscriptionJobName - The name of the medical transcription job you want to delete. Job names are case sensitive.

data DeleteMedicalTranscriptionJobResponse Source #

Instances

Instances details
Generic DeleteMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

Read DeleteMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

Show DeleteMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

NFData DeleteMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

Eq DeleteMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

type Rep DeleteMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalTranscriptionJob

type Rep DeleteMedicalTranscriptionJobResponse = D1 ('MetaData "DeleteMedicalTranscriptionJobResponse" "Amazonka.Transcribe.DeleteMedicalTranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteMedicalTranscriptionJobResponse'" 'PrefixI 'False) (U1 :: Type -> Type))

newDeleteMedicalTranscriptionJobResponse :: DeleteMedicalTranscriptionJobResponse Source #

Create a value of DeleteMedicalTranscriptionJobResponse with all optional fields omitted.

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

DeleteMedicalVocabulary

data DeleteMedicalVocabulary Source #

See: newDeleteMedicalVocabulary smart constructor.

Instances

Instances details
ToJSON DeleteMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

ToHeaders DeleteMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

ToPath DeleteMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

ToQuery DeleteMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

AWSRequest DeleteMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

Generic DeleteMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

Associated Types

type Rep DeleteMedicalVocabulary :: Type -> Type #

Read DeleteMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

Show DeleteMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

NFData DeleteMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

Methods

rnf :: DeleteMedicalVocabulary -> () #

Eq DeleteMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

Hashable DeleteMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

type AWSResponse DeleteMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

type Rep DeleteMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

type Rep DeleteMedicalVocabulary = D1 ('MetaData "DeleteMedicalVocabulary" "Amazonka.Transcribe.DeleteMedicalVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteMedicalVocabulary'" 'PrefixI 'True) (S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteMedicalVocabulary Source #

Create a value of DeleteMedicalVocabulary 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:

DeleteMedicalVocabulary, deleteMedicalVocabulary_vocabularyName - The name of the custom medical vocabulary you want to delete. Custom medical vocabulary names are case sensitive.

data DeleteMedicalVocabularyResponse Source #

See: newDeleteMedicalVocabularyResponse smart constructor.

Instances

Instances details
Generic DeleteMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

Associated Types

type Rep DeleteMedicalVocabularyResponse :: Type -> Type #

Read DeleteMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

Show DeleteMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

NFData DeleteMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

Eq DeleteMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

type Rep DeleteMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteMedicalVocabulary

type Rep DeleteMedicalVocabularyResponse = D1 ('MetaData "DeleteMedicalVocabularyResponse" "Amazonka.Transcribe.DeleteMedicalVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteMedicalVocabularyResponse'" 'PrefixI 'False) (U1 :: Type -> Type))

newDeleteMedicalVocabularyResponse :: DeleteMedicalVocabularyResponse Source #

Create a value of DeleteMedicalVocabularyResponse with all optional fields omitted.

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

DeleteTranscriptionJob

data DeleteTranscriptionJob Source #

See: newDeleteTranscriptionJob smart constructor.

Instances

Instances details
ToJSON DeleteTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

ToHeaders DeleteTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

ToPath DeleteTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

ToQuery DeleteTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

AWSRequest DeleteTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

Associated Types

type AWSResponse DeleteTranscriptionJob #

Generic DeleteTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

Associated Types

type Rep DeleteTranscriptionJob :: Type -> Type #

Read DeleteTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

Show DeleteTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

NFData DeleteTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

Methods

rnf :: DeleteTranscriptionJob -> () #

Eq DeleteTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

Hashable DeleteTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

type AWSResponse DeleteTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

type Rep DeleteTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

type Rep DeleteTranscriptionJob = D1 ('MetaData "DeleteTranscriptionJob" "Amazonka.Transcribe.DeleteTranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteTranscriptionJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "transcriptionJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteTranscriptionJob Source #

Create a value of DeleteTranscriptionJob 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:

DeleteTranscriptionJob, deleteTranscriptionJob_transcriptionJobName - The name of the transcription job you want to delete. Job names are case sensitive.

data DeleteTranscriptionJobResponse Source #

See: newDeleteTranscriptionJobResponse smart constructor.

Instances

Instances details
Generic DeleteTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

Associated Types

type Rep DeleteTranscriptionJobResponse :: Type -> Type #

Read DeleteTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

Show DeleteTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

NFData DeleteTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

Eq DeleteTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

type Rep DeleteTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteTranscriptionJob

type Rep DeleteTranscriptionJobResponse = D1 ('MetaData "DeleteTranscriptionJobResponse" "Amazonka.Transcribe.DeleteTranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteTranscriptionJobResponse'" 'PrefixI 'False) (U1 :: Type -> Type))

newDeleteTranscriptionJobResponse :: DeleteTranscriptionJobResponse Source #

Create a value of DeleteTranscriptionJobResponse with all optional fields omitted.

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

DeleteVocabulary

data DeleteVocabulary Source #

See: newDeleteVocabulary smart constructor.

Constructors

DeleteVocabulary' Text 

Instances

Instances details
ToJSON DeleteVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

ToHeaders DeleteVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

ToPath DeleteVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

ToQuery DeleteVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

AWSRequest DeleteVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

Associated Types

type AWSResponse DeleteVocabulary #

Generic DeleteVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

Associated Types

type Rep DeleteVocabulary :: Type -> Type #

Read DeleteVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

Show DeleteVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

NFData DeleteVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

Methods

rnf :: DeleteVocabulary -> () #

Eq DeleteVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

Hashable DeleteVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

type AWSResponse DeleteVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

type Rep DeleteVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

type Rep DeleteVocabulary = D1 ('MetaData "DeleteVocabulary" "Amazonka.Transcribe.DeleteVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteVocabulary'" 'PrefixI 'True) (S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteVocabulary Source #

Create a value of DeleteVocabulary 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:

DeleteVocabulary, deleteVocabulary_vocabularyName - The name of the custom vocabulary you want to delete. Custom vocabulary names are case sensitive.

data DeleteVocabularyResponse Source #

See: newDeleteVocabularyResponse smart constructor.

Instances

Instances details
Generic DeleteVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

Associated Types

type Rep DeleteVocabularyResponse :: Type -> Type #

Read DeleteVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

Show DeleteVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

NFData DeleteVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

Eq DeleteVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

type Rep DeleteVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabulary

type Rep DeleteVocabularyResponse = D1 ('MetaData "DeleteVocabularyResponse" "Amazonka.Transcribe.DeleteVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteVocabularyResponse'" 'PrefixI 'False) (U1 :: Type -> Type))

newDeleteVocabularyResponse :: DeleteVocabularyResponse Source #

Create a value of DeleteVocabularyResponse with all optional fields omitted.

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

DeleteVocabularyFilter

data DeleteVocabularyFilter Source #

See: newDeleteVocabularyFilter smart constructor.

Instances

Instances details
ToJSON DeleteVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

ToHeaders DeleteVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

ToPath DeleteVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

ToQuery DeleteVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

AWSRequest DeleteVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

Associated Types

type AWSResponse DeleteVocabularyFilter #

Generic DeleteVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

Associated Types

type Rep DeleteVocabularyFilter :: Type -> Type #

Read DeleteVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

Show DeleteVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

NFData DeleteVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

Methods

rnf :: DeleteVocabularyFilter -> () #

Eq DeleteVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

Hashable DeleteVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

type AWSResponse DeleteVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

type Rep DeleteVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

type Rep DeleteVocabularyFilter = D1 ('MetaData "DeleteVocabularyFilter" "Amazonka.Transcribe.DeleteVocabularyFilter" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteVocabularyFilter'" 'PrefixI 'True) (S1 ('MetaSel ('Just "vocabularyFilterName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteVocabularyFilter Source #

Create a value of DeleteVocabularyFilter 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:

DeleteVocabularyFilter, deleteVocabularyFilter_vocabularyFilterName - The name of the custom vocabulary filter you want to delete. Custom vocabulary filter names are case sensitive.

data DeleteVocabularyFilterResponse Source #

See: newDeleteVocabularyFilterResponse smart constructor.

Instances

Instances details
Generic DeleteVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

Associated Types

type Rep DeleteVocabularyFilterResponse :: Type -> Type #

Read DeleteVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

Show DeleteVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

NFData DeleteVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

Eq DeleteVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

type Rep DeleteVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DeleteVocabularyFilter

type Rep DeleteVocabularyFilterResponse = D1 ('MetaData "DeleteVocabularyFilterResponse" "Amazonka.Transcribe.DeleteVocabularyFilter" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DeleteVocabularyFilterResponse'" 'PrefixI 'False) (U1 :: Type -> Type))

newDeleteVocabularyFilterResponse :: DeleteVocabularyFilterResponse Source #

Create a value of DeleteVocabularyFilterResponse with all optional fields omitted.

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

DescribeLanguageModel

data DescribeLanguageModel Source #

See: newDescribeLanguageModel smart constructor.

Instances

Instances details
ToJSON DescribeLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

ToHeaders DescribeLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

ToPath DescribeLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

ToQuery DescribeLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

AWSRequest DescribeLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

Associated Types

type AWSResponse DescribeLanguageModel #

Generic DescribeLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

Associated Types

type Rep DescribeLanguageModel :: Type -> Type #

Read DescribeLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

Show DescribeLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

NFData DescribeLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

Methods

rnf :: DescribeLanguageModel -> () #

Eq DescribeLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

Hashable DescribeLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

type AWSResponse DescribeLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

type Rep DescribeLanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

type Rep DescribeLanguageModel = D1 ('MetaData "DescribeLanguageModel" "Amazonka.Transcribe.DescribeLanguageModel" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DescribeLanguageModel'" 'PrefixI 'True) (S1 ('MetaSel ('Just "modelName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDescribeLanguageModel Source #

Create a value of DescribeLanguageModel 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:

DescribeLanguageModel, describeLanguageModel_modelName - The name of the custom language model you want information about. Model names are case sensitive.

data DescribeLanguageModelResponse Source #

See: newDescribeLanguageModelResponse smart constructor.

Instances

Instances details
Generic DescribeLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

Associated Types

type Rep DescribeLanguageModelResponse :: Type -> Type #

Read DescribeLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

Show DescribeLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

NFData DescribeLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

Eq DescribeLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

type Rep DescribeLanguageModelResponse Source # 
Instance details

Defined in Amazonka.Transcribe.DescribeLanguageModel

type Rep DescribeLanguageModelResponse = D1 ('MetaData "DescribeLanguageModelResponse" "Amazonka.Transcribe.DescribeLanguageModel" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "DescribeLanguageModelResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "languageModel") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageModel)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDescribeLanguageModelResponse Source #

Create a value of DescribeLanguageModelResponse 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:languageModel:DescribeLanguageModelResponse', describeLanguageModelResponse_languageModel - Provides information about the specified custom language model.

This parameter also shows if the base language model you used to create your custom language model has been updated. If Amazon Transcribe has updated the base model, you can create a new custom language model using the updated base model.

If you tried to create a new custom language model and the request wasn't successful, you can use this DescribeLanguageModel to help identify the reason for this failure.

$sel:httpStatus:DescribeLanguageModelResponse', describeLanguageModelResponse_httpStatus - The response's http status code.

GetCallAnalyticsCategory

data GetCallAnalyticsCategory Source #

See: newGetCallAnalyticsCategory smart constructor.

Instances

Instances details
ToJSON GetCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

ToHeaders GetCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

ToPath GetCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

ToQuery GetCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

AWSRequest GetCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

Generic GetCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

Associated Types

type Rep GetCallAnalyticsCategory :: Type -> Type #

Read GetCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

Show GetCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

NFData GetCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

Eq GetCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

Hashable GetCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

type AWSResponse GetCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

type Rep GetCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

type Rep GetCallAnalyticsCategory = D1 ('MetaData "GetCallAnalyticsCategory" "Amazonka.Transcribe.GetCallAnalyticsCategory" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetCallAnalyticsCategory'" 'PrefixI 'True) (S1 ('MetaSel ('Just "categoryName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetCallAnalyticsCategory Source #

Create a value of GetCallAnalyticsCategory 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:

GetCallAnalyticsCategory, getCallAnalyticsCategory_categoryName - The name of the Call Analytics category you want information about. Category names are case sensitive.

data GetCallAnalyticsCategoryResponse Source #

See: newGetCallAnalyticsCategoryResponse smart constructor.

Instances

Instances details
Generic GetCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

Associated Types

type Rep GetCallAnalyticsCategoryResponse :: Type -> Type #

Read GetCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

Show GetCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

NFData GetCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

Eq GetCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

type Rep GetCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsCategory

type Rep GetCallAnalyticsCategoryResponse = D1 ('MetaData "GetCallAnalyticsCategoryResponse" "Amazonka.Transcribe.GetCallAnalyticsCategory" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetCallAnalyticsCategoryResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "categoryProperties") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CategoryProperties)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetCallAnalyticsCategoryResponse Source #

Create a value of GetCallAnalyticsCategoryResponse 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:categoryProperties:GetCallAnalyticsCategoryResponse', getCallAnalyticsCategoryResponse_categoryProperties - Provides you with the properties of the Call Analytics category you specified in your GetCallAnalyticsCategory request.

$sel:httpStatus:GetCallAnalyticsCategoryResponse', getCallAnalyticsCategoryResponse_httpStatus - The response's http status code.

GetCallAnalyticsJob

data GetCallAnalyticsJob Source #

See: newGetCallAnalyticsJob smart constructor.

Instances

Instances details
ToJSON GetCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

ToHeaders GetCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

ToPath GetCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

ToQuery GetCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

AWSRequest GetCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

Associated Types

type AWSResponse GetCallAnalyticsJob #

Generic GetCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

Associated Types

type Rep GetCallAnalyticsJob :: Type -> Type #

Read GetCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

Show GetCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

NFData GetCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

Methods

rnf :: GetCallAnalyticsJob -> () #

Eq GetCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

Hashable GetCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

type AWSResponse GetCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

type Rep GetCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

type Rep GetCallAnalyticsJob = D1 ('MetaData "GetCallAnalyticsJob" "Amazonka.Transcribe.GetCallAnalyticsJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetCallAnalyticsJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "callAnalyticsJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetCallAnalyticsJob Source #

Create a value of GetCallAnalyticsJob 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:

GetCallAnalyticsJob, getCallAnalyticsJob_callAnalyticsJobName - The name of the Call Analytics job you want information about. Job names are case sensitive.

data GetCallAnalyticsJobResponse Source #

See: newGetCallAnalyticsJobResponse smart constructor.

Instances

Instances details
Generic GetCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

Associated Types

type Rep GetCallAnalyticsJobResponse :: Type -> Type #

Read GetCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

Show GetCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

NFData GetCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

Eq GetCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

type Rep GetCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetCallAnalyticsJob

type Rep GetCallAnalyticsJobResponse = D1 ('MetaData "GetCallAnalyticsJobResponse" "Amazonka.Transcribe.GetCallAnalyticsJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetCallAnalyticsJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "callAnalyticsJob") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CallAnalyticsJob)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetCallAnalyticsJobResponse Source #

Create a value of GetCallAnalyticsJobResponse 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:callAnalyticsJob:GetCallAnalyticsJobResponse', getCallAnalyticsJobResponse_callAnalyticsJob - Provides detailed information about the specified Call Analytics job, including job status and, if applicable, failure reason.

$sel:httpStatus:GetCallAnalyticsJobResponse', getCallAnalyticsJobResponse_httpStatus - The response's http status code.

GetMedicalTranscriptionJob

data GetMedicalTranscriptionJob Source #

See: newGetMedicalTranscriptionJob smart constructor.

Instances

Instances details
ToJSON GetMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

ToHeaders GetMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

ToPath GetMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

ToQuery GetMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

AWSRequest GetMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

Generic GetMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

Associated Types

type Rep GetMedicalTranscriptionJob :: Type -> Type #

Read GetMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

Show GetMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

NFData GetMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

Eq GetMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

Hashable GetMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

type AWSResponse GetMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

type Rep GetMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

type Rep GetMedicalTranscriptionJob = D1 ('MetaData "GetMedicalTranscriptionJob" "Amazonka.Transcribe.GetMedicalTranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetMedicalTranscriptionJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "medicalTranscriptionJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetMedicalTranscriptionJob Source #

Create a value of GetMedicalTranscriptionJob 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:

GetMedicalTranscriptionJob, getMedicalTranscriptionJob_medicalTranscriptionJobName - The name of the medical transcription job you want information about. Job names are case sensitive.

data GetMedicalTranscriptionJobResponse Source #

Instances

Instances details
Generic GetMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

Associated Types

type Rep GetMedicalTranscriptionJobResponse :: Type -> Type #

Read GetMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

Show GetMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

NFData GetMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

Eq GetMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

type Rep GetMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalTranscriptionJob

type Rep GetMedicalTranscriptionJobResponse = D1 ('MetaData "GetMedicalTranscriptionJobResponse" "Amazonka.Transcribe.GetMedicalTranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetMedicalTranscriptionJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "medicalTranscriptionJob") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe MedicalTranscriptionJob)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetMedicalTranscriptionJobResponse Source #

Create a value of GetMedicalTranscriptionJobResponse 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:medicalTranscriptionJob:GetMedicalTranscriptionJobResponse', getMedicalTranscriptionJobResponse_medicalTranscriptionJob - Provides detailed information about the specified medical transcription job, including job status and, if applicable, failure reason.

$sel:httpStatus:GetMedicalTranscriptionJobResponse', getMedicalTranscriptionJobResponse_httpStatus - The response's http status code.

GetMedicalVocabulary

data GetMedicalVocabulary Source #

See: newGetMedicalVocabulary smart constructor.

Instances

Instances details
ToJSON GetMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

ToHeaders GetMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

ToPath GetMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

ToQuery GetMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

AWSRequest GetMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

Associated Types

type AWSResponse GetMedicalVocabulary #

Generic GetMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

Associated Types

type Rep GetMedicalVocabulary :: Type -> Type #

Read GetMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

Show GetMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

NFData GetMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

Methods

rnf :: GetMedicalVocabulary -> () #

Eq GetMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

Hashable GetMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

type AWSResponse GetMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

type Rep GetMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

type Rep GetMedicalVocabulary = D1 ('MetaData "GetMedicalVocabulary" "Amazonka.Transcribe.GetMedicalVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetMedicalVocabulary'" 'PrefixI 'True) (S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetMedicalVocabulary Source #

Create a value of GetMedicalVocabulary 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:

GetMedicalVocabulary, getMedicalVocabulary_vocabularyName - The name of the custom medical vocabulary you want information about. Custom medical vocabulary names are case sensitive.

data GetMedicalVocabularyResponse Source #

See: newGetMedicalVocabularyResponse smart constructor.

Instances

Instances details
Generic GetMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

Associated Types

type Rep GetMedicalVocabularyResponse :: Type -> Type #

Read GetMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

Show GetMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

NFData GetMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

Eq GetMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

type Rep GetMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetMedicalVocabulary

type Rep GetMedicalVocabularyResponse = D1 ('MetaData "GetMedicalVocabularyResponse" "Amazonka.Transcribe.GetMedicalVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetMedicalVocabularyResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "downloadUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "failureReason") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode)))) :*: ((S1 ('MetaSel ('Just "lastModifiedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "vocabularyState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VocabularyState)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))

newGetMedicalVocabularyResponse Source #

Create a value of GetMedicalVocabularyResponse 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:downloadUri:GetMedicalVocabularyResponse', getMedicalVocabularyResponse_downloadUri - The S3 location where the specified custom medical vocabulary is stored; use this URI to view or download the custom vocabulary.

GetMedicalVocabularyResponse, getMedicalVocabularyResponse_failureReason - If VocabularyState is FAILED, FailureReason contains information about why the custom medical vocabulary request failed. See also: Common Errors.

GetMedicalVocabularyResponse, getMedicalVocabularyResponse_languageCode - The language code you selected for your custom medical vocabulary. US English (en-US) is the only language supported with Amazon Transcribe Medical.

GetMedicalVocabularyResponse, getMedicalVocabularyResponse_lastModifiedTime - The date and time the specified custom medical vocabulary was last modified.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents 12:32 PM UTC-7 on May 4, 2022.

GetMedicalVocabulary, getMedicalVocabularyResponse_vocabularyName - The name of the custom medical vocabulary you requested information about.

GetMedicalVocabularyResponse, getMedicalVocabularyResponse_vocabularyState - The processing state of your custom medical vocabulary. If the state is READY, you can use the custom vocabulary in a StartMedicalTranscriptionJob request.

$sel:httpStatus:GetMedicalVocabularyResponse', getMedicalVocabularyResponse_httpStatus - The response's http status code.

GetTranscriptionJob

data GetTranscriptionJob Source #

See: newGetTranscriptionJob smart constructor.

Instances

Instances details
ToJSON GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

ToHeaders GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

ToPath GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

ToQuery GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

AWSRequest GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Associated Types

type AWSResponse GetTranscriptionJob #

Generic GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Associated Types

type Rep GetTranscriptionJob :: Type -> Type #

Read GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Show GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

NFData GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Methods

rnf :: GetTranscriptionJob -> () #

Eq GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Hashable GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

type AWSResponse GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

type Rep GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

type Rep GetTranscriptionJob = D1 ('MetaData "GetTranscriptionJob" "Amazonka.Transcribe.GetTranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetTranscriptionJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "transcriptionJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetTranscriptionJob Source #

Create a value of GetTranscriptionJob 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:

GetTranscriptionJob, getTranscriptionJob_transcriptionJobName - The name of the transcription job you want information about. Job names are case sensitive.

data GetTranscriptionJobResponse Source #

See: newGetTranscriptionJobResponse smart constructor.

Instances

Instances details
Generic GetTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Associated Types

type Rep GetTranscriptionJobResponse :: Type -> Type #

Read GetTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Show GetTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

NFData GetTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Eq GetTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

type Rep GetTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

type Rep GetTranscriptionJobResponse = D1 ('MetaData "GetTranscriptionJobResponse" "Amazonka.Transcribe.GetTranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetTranscriptionJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "transcriptionJob") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TranscriptionJob)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetTranscriptionJobResponse Source #

Create a value of GetTranscriptionJobResponse 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:transcriptionJob:GetTranscriptionJobResponse', getTranscriptionJobResponse_transcriptionJob - Provides detailed information about the specified transcription job, including job status and, if applicable, failure reason.

$sel:httpStatus:GetTranscriptionJobResponse', getTranscriptionJobResponse_httpStatus - The response's http status code.

GetVocabulary

data GetVocabulary Source #

See: newGetVocabulary smart constructor.

Constructors

GetVocabulary' Text 

Instances

Instances details
ToJSON GetVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

ToHeaders GetVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

ToPath GetVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

ToQuery GetVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

AWSRequest GetVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

Associated Types

type AWSResponse GetVocabulary #

Generic GetVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

Associated Types

type Rep GetVocabulary :: Type -> Type #

Read GetVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

Show GetVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

NFData GetVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

Methods

rnf :: GetVocabulary -> () #

Eq GetVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

Hashable GetVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

type AWSResponse GetVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

type Rep GetVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

type Rep GetVocabulary = D1 ('MetaData "GetVocabulary" "Amazonka.Transcribe.GetVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetVocabulary'" 'PrefixI 'True) (S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetVocabulary Source #

Create a value of GetVocabulary 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:

GetVocabulary, getVocabulary_vocabularyName - The name of the custom vocabulary you want information about. Custom vocabulary names are case sensitive.

data GetVocabularyResponse Source #

See: newGetVocabularyResponse smart constructor.

Instances

Instances details
Generic GetVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

Associated Types

type Rep GetVocabularyResponse :: Type -> Type #

Read GetVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

Show GetVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

NFData GetVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

Methods

rnf :: GetVocabularyResponse -> () #

Eq GetVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

type Rep GetVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabulary

type Rep GetVocabularyResponse = D1 ('MetaData "GetVocabularyResponse" "Amazonka.Transcribe.GetVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetVocabularyResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "downloadUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "failureReason") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode)))) :*: ((S1 ('MetaSel ('Just "lastModifiedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "vocabularyState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VocabularyState)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))

newGetVocabularyResponse Source #

Create a value of GetVocabularyResponse 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:downloadUri:GetVocabularyResponse', getVocabularyResponse_downloadUri - The S3 location where the custom vocabulary is stored; use this URI to view or download the custom vocabulary.

GetVocabularyResponse, getVocabularyResponse_failureReason - If VocabularyState is FAILED, FailureReason contains information about why the custom vocabulary request failed. See also: Common Errors.

GetVocabularyResponse, getVocabularyResponse_languageCode - The language code you selected for your custom vocabulary.

GetVocabularyResponse, getVocabularyResponse_lastModifiedTime - The date and time the specified custom vocabulary was last modified.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents 12:32 PM UTC-7 on May 4, 2022.

GetVocabulary, getVocabularyResponse_vocabularyName - The name of the custom vocabulary you requested information about.

GetVocabularyResponse, getVocabularyResponse_vocabularyState - The processing state of your custom vocabulary. If the state is READY, you can use the custom vocabulary in a StartTranscriptionJob request.

$sel:httpStatus:GetVocabularyResponse', getVocabularyResponse_httpStatus - The response's http status code.

GetVocabularyFilter

data GetVocabularyFilter Source #

See: newGetVocabularyFilter smart constructor.

Instances

Instances details
ToJSON GetVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

ToHeaders GetVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

ToPath GetVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

ToQuery GetVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

AWSRequest GetVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

Associated Types

type AWSResponse GetVocabularyFilter #

Generic GetVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

Associated Types

type Rep GetVocabularyFilter :: Type -> Type #

Read GetVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

Show GetVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

NFData GetVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

Methods

rnf :: GetVocabularyFilter -> () #

Eq GetVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

Hashable GetVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

type AWSResponse GetVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

type Rep GetVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

type Rep GetVocabularyFilter = D1 ('MetaData "GetVocabularyFilter" "Amazonka.Transcribe.GetVocabularyFilter" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetVocabularyFilter'" 'PrefixI 'True) (S1 ('MetaSel ('Just "vocabularyFilterName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetVocabularyFilter Source #

Create a value of GetVocabularyFilter 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:

GetVocabularyFilter, getVocabularyFilter_vocabularyFilterName - The name of the custom vocabulary filter you want information about. Custom vocabulary filter names are case sensitive.

data GetVocabularyFilterResponse Source #

See: newGetVocabularyFilterResponse smart constructor.

Instances

Instances details
Generic GetVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

Associated Types

type Rep GetVocabularyFilterResponse :: Type -> Type #

Read GetVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

Show GetVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

NFData GetVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

Eq GetVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

type Rep GetVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetVocabularyFilter

type Rep GetVocabularyFilterResponse = D1 ('MetaData "GetVocabularyFilterResponse" "Amazonka.Transcribe.GetVocabularyFilter" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetVocabularyFilterResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "downloadUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode))) :*: (S1 ('MetaSel ('Just "lastModifiedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "vocabularyFilterName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))

newGetVocabularyFilterResponse Source #

Create a value of GetVocabularyFilterResponse 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:downloadUri:GetVocabularyFilterResponse', getVocabularyFilterResponse_downloadUri - The Amazon S3 location where the custom vocabulary filter is stored; use this URI to view or download the custom vocabulary filter.

GetVocabularyFilterResponse, getVocabularyFilterResponse_languageCode - The language code you selected for your custom vocabulary filter.

GetVocabularyFilterResponse, getVocabularyFilterResponse_lastModifiedTime - The date and time the specified custom vocabulary filter was last modified.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents 12:32 PM UTC-7 on May 4, 2022.

GetVocabularyFilter, getVocabularyFilterResponse_vocabularyFilterName - The name of the custom vocabulary filter you requested information about.

$sel:httpStatus:GetVocabularyFilterResponse', getVocabularyFilterResponse_httpStatus - The response's http status code.

ListCallAnalyticsCategories

data ListCallAnalyticsCategories Source #

See: newListCallAnalyticsCategories smart constructor.

Instances

Instances details
ToJSON ListCallAnalyticsCategories Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

ToHeaders ListCallAnalyticsCategories Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

ToPath ListCallAnalyticsCategories Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

ToQuery ListCallAnalyticsCategories Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

AWSRequest ListCallAnalyticsCategories Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

Generic ListCallAnalyticsCategories Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

Associated Types

type Rep ListCallAnalyticsCategories :: Type -> Type #

Read ListCallAnalyticsCategories Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

Show ListCallAnalyticsCategories Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

NFData ListCallAnalyticsCategories Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

Eq ListCallAnalyticsCategories Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

Hashable ListCallAnalyticsCategories Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

type AWSResponse ListCallAnalyticsCategories Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

type Rep ListCallAnalyticsCategories Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

type Rep ListCallAnalyticsCategories = D1 ('MetaData "ListCallAnalyticsCategories" "Amazonka.Transcribe.ListCallAnalyticsCategories" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListCallAnalyticsCategories'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newListCallAnalyticsCategories :: ListCallAnalyticsCategories Source #

Create a value of ListCallAnalyticsCategories 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:maxResults:ListCallAnalyticsCategories', listCallAnalyticsCategories_maxResults - The maximum number of Call Analytics categories to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you don't specify a value, a default of 5 is used.

ListCallAnalyticsCategories, listCallAnalyticsCategories_nextToken - If your ListCallAnalyticsCategories request returns more results than can be displayed, NextToken is displayed in the response with an associated string. To get the next page of results, copy this string and repeat your request, including NextToken with the value of the copied string. Repeat as needed to view all your results.

data ListCallAnalyticsCategoriesResponse Source #

Instances

Instances details
Generic ListCallAnalyticsCategoriesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

Read ListCallAnalyticsCategoriesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

Show ListCallAnalyticsCategoriesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

NFData ListCallAnalyticsCategoriesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

Eq ListCallAnalyticsCategoriesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

type Rep ListCallAnalyticsCategoriesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsCategories

type Rep ListCallAnalyticsCategoriesResponse = D1 ('MetaData "ListCallAnalyticsCategoriesResponse" "Amazonka.Transcribe.ListCallAnalyticsCategories" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListCallAnalyticsCategoriesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "categories") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [CategoryProperties])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListCallAnalyticsCategoriesResponse Source #

Create a value of ListCallAnalyticsCategoriesResponse 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:categories:ListCallAnalyticsCategoriesResponse', listCallAnalyticsCategoriesResponse_categories - Provides detailed information about your Call Analytics categories, including all the rules associated with each category.

ListCallAnalyticsCategories, listCallAnalyticsCategoriesResponse_nextToken - If NextToken is present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with the NextToken parameter in your results output, then run your request again including NextToken with the value of the copied string. Repeat as needed to view all your results.

$sel:httpStatus:ListCallAnalyticsCategoriesResponse', listCallAnalyticsCategoriesResponse_httpStatus - The response's http status code.

ListCallAnalyticsJobs

data ListCallAnalyticsJobs Source #

See: newListCallAnalyticsJobs smart constructor.

Instances

Instances details
ToJSON ListCallAnalyticsJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

ToHeaders ListCallAnalyticsJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

ToPath ListCallAnalyticsJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

ToQuery ListCallAnalyticsJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

AWSRequest ListCallAnalyticsJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

Associated Types

type AWSResponse ListCallAnalyticsJobs #

Generic ListCallAnalyticsJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

Associated Types

type Rep ListCallAnalyticsJobs :: Type -> Type #

Read ListCallAnalyticsJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

Show ListCallAnalyticsJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

NFData ListCallAnalyticsJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

Methods

rnf :: ListCallAnalyticsJobs -> () #

Eq ListCallAnalyticsJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

Hashable ListCallAnalyticsJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

type AWSResponse ListCallAnalyticsJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

type Rep ListCallAnalyticsJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

type Rep ListCallAnalyticsJobs = D1 ('MetaData "ListCallAnalyticsJobs" "Amazonka.Transcribe.ListCallAnalyticsJobs" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListCallAnalyticsJobs'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "jobNameContains") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CallAnalyticsJobStatus)))))

newListCallAnalyticsJobs :: ListCallAnalyticsJobs Source #

Create a value of ListCallAnalyticsJobs 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:jobNameContains:ListCallAnalyticsJobs', listCallAnalyticsJobs_jobNameContains - Returns only the Call Analytics jobs that contain the specified string. The search is not case sensitive.

$sel:maxResults:ListCallAnalyticsJobs', listCallAnalyticsJobs_maxResults - The maximum number of Call Analytics jobs to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you don't specify a value, a default of 5 is used.

ListCallAnalyticsJobs, listCallAnalyticsJobs_nextToken - If your ListCallAnalyticsJobs request returns more results than can be displayed, NextToken is displayed in the response with an associated string. To get the next page of results, copy this string and repeat your request, including NextToken with the value of the copied string. Repeat as needed to view all your results.

ListCallAnalyticsJobs, listCallAnalyticsJobs_status - Returns only Call Analytics jobs with the specified status. Jobs are ordered by creation date, with the newest job first. If you don't include Status, all Call Analytics jobs are returned.

data ListCallAnalyticsJobsResponse Source #

See: newListCallAnalyticsJobsResponse smart constructor.

Instances

Instances details
Generic ListCallAnalyticsJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

Associated Types

type Rep ListCallAnalyticsJobsResponse :: Type -> Type #

Read ListCallAnalyticsJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

Show ListCallAnalyticsJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

NFData ListCallAnalyticsJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

Eq ListCallAnalyticsJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

type Rep ListCallAnalyticsJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListCallAnalyticsJobs

type Rep ListCallAnalyticsJobsResponse = D1 ('MetaData "ListCallAnalyticsJobsResponse" "Amazonka.Transcribe.ListCallAnalyticsJobs" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListCallAnalyticsJobsResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "callAnalyticsJobSummaries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [CallAnalyticsJobSummary])) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CallAnalyticsJobStatus)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListCallAnalyticsJobsResponse Source #

Create a value of ListCallAnalyticsJobsResponse 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:callAnalyticsJobSummaries:ListCallAnalyticsJobsResponse', listCallAnalyticsJobsResponse_callAnalyticsJobSummaries - Provides a summary of information about each result.

ListCallAnalyticsJobs, listCallAnalyticsJobsResponse_nextToken - If NextToken is present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with the NextToken parameter in your results output, then run your request again including NextToken with the value of the copied string. Repeat as needed to view all your results.

ListCallAnalyticsJobs, listCallAnalyticsJobsResponse_status - Lists all Call Analytics jobs that have the status specified in your request. Jobs are ordered by creation date, with the newest job first.

$sel:httpStatus:ListCallAnalyticsJobsResponse', listCallAnalyticsJobsResponse_httpStatus - The response's http status code.

ListLanguageModels

data ListLanguageModels Source #

See: newListLanguageModels smart constructor.

Instances

Instances details
ToJSON ListLanguageModels Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

ToHeaders ListLanguageModels Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

ToPath ListLanguageModels Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

ToQuery ListLanguageModels Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

AWSRequest ListLanguageModels Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

Associated Types

type AWSResponse ListLanguageModels #

Generic ListLanguageModels Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

Associated Types

type Rep ListLanguageModels :: Type -> Type #

Read ListLanguageModels Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

Show ListLanguageModels Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

NFData ListLanguageModels Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

Methods

rnf :: ListLanguageModels -> () #

Eq ListLanguageModels Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

Hashable ListLanguageModels Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

type AWSResponse ListLanguageModels Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

type Rep ListLanguageModels Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

type Rep ListLanguageModels = D1 ('MetaData "ListLanguageModels" "Amazonka.Transcribe.ListLanguageModels" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListLanguageModels'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nameContains") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "statusEquals") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelStatus)))))

newListLanguageModels :: ListLanguageModels Source #

Create a value of ListLanguageModels 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:maxResults:ListLanguageModels', listLanguageModels_maxResults - The maximum number of custom language models to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you don't specify a value, a default of 5 is used.

$sel:nameContains:ListLanguageModels', listLanguageModels_nameContains - Returns only the custom language models that contain the specified string. The search is not case sensitive.

ListLanguageModels, listLanguageModels_nextToken - If your ListLanguageModels request returns more results than can be displayed, NextToken is displayed in the response with an associated string. To get the next page of results, copy this string and repeat your request, including NextToken with the value of the copied string. Repeat as needed to view all your results.

$sel:statusEquals:ListLanguageModels', listLanguageModels_statusEquals - Returns only custom language models with the specified status. Language models are ordered by creation date, with the newest model first. If you don't include StatusEquals, all custom language models are returned.

data ListLanguageModelsResponse Source #

See: newListLanguageModelsResponse smart constructor.

Instances

Instances details
Generic ListLanguageModelsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

Associated Types

type Rep ListLanguageModelsResponse :: Type -> Type #

Read ListLanguageModelsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

Show ListLanguageModelsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

NFData ListLanguageModelsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

Eq ListLanguageModelsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

type Rep ListLanguageModelsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListLanguageModels

type Rep ListLanguageModelsResponse = D1 ('MetaData "ListLanguageModelsResponse" "Amazonka.Transcribe.ListLanguageModels" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListLanguageModelsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "models") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [LanguageModel])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListLanguageModelsResponse Source #

Create a value of ListLanguageModelsResponse 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:models:ListLanguageModelsResponse', listLanguageModelsResponse_models - Provides information about the custom language models that match the criteria specified in your request.

ListLanguageModels, listLanguageModelsResponse_nextToken - If NextToken is present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with the NextToken parameter in your results output, then run your request again including NextToken with the value of the copied string. Repeat as needed to view all your results.

$sel:httpStatus:ListLanguageModelsResponse', listLanguageModelsResponse_httpStatus - The response's http status code.

ListMedicalTranscriptionJobs

data ListMedicalTranscriptionJobs Source #

See: newListMedicalTranscriptionJobs smart constructor.

Instances

Instances details
ToJSON ListMedicalTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

ToHeaders ListMedicalTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

ToPath ListMedicalTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

ToQuery ListMedicalTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

AWSRequest ListMedicalTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

Generic ListMedicalTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

Associated Types

type Rep ListMedicalTranscriptionJobs :: Type -> Type #

Read ListMedicalTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

Show ListMedicalTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

NFData ListMedicalTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

Eq ListMedicalTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

Hashable ListMedicalTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

type AWSResponse ListMedicalTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

type Rep ListMedicalTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

type Rep ListMedicalTranscriptionJobs = D1 ('MetaData "ListMedicalTranscriptionJobs" "Amazonka.Transcribe.ListMedicalTranscriptionJobs" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListMedicalTranscriptionJobs'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "jobNameContains") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TranscriptionJobStatus)))))

newListMedicalTranscriptionJobs :: ListMedicalTranscriptionJobs Source #

Create a value of ListMedicalTranscriptionJobs 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:jobNameContains:ListMedicalTranscriptionJobs', listMedicalTranscriptionJobs_jobNameContains - Returns only the medical transcription jobs that contain the specified string. The search is not case sensitive.

$sel:maxResults:ListMedicalTranscriptionJobs', listMedicalTranscriptionJobs_maxResults - The maximum number of medical transcription jobs to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you don't specify a value, a default of 5 is used.

ListMedicalTranscriptionJobs, listMedicalTranscriptionJobs_nextToken - If your ListMedicalTranscriptionJobs request returns more results than can be displayed, NextToken is displayed in the response with an associated string. To get the next page of results, copy this string and repeat your request, including NextToken with the value of the copied string. Repeat as needed to view all your results.

ListMedicalTranscriptionJobs, listMedicalTranscriptionJobs_status - Returns only medical transcription jobs with the specified status. Jobs are ordered by creation date, with the newest job first. If you don't include Status, all medical transcription jobs are returned.

data ListMedicalTranscriptionJobsResponse Source #

Instances

Instances details
Generic ListMedicalTranscriptionJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

Read ListMedicalTranscriptionJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

Show ListMedicalTranscriptionJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

NFData ListMedicalTranscriptionJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

Eq ListMedicalTranscriptionJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

type Rep ListMedicalTranscriptionJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalTranscriptionJobs

type Rep ListMedicalTranscriptionJobsResponse = D1 ('MetaData "ListMedicalTranscriptionJobsResponse" "Amazonka.Transcribe.ListMedicalTranscriptionJobs" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListMedicalTranscriptionJobsResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "medicalTranscriptionJobSummaries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [MedicalTranscriptionJobSummary])) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TranscriptionJobStatus)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListMedicalTranscriptionJobsResponse Source #

Create a value of ListMedicalTranscriptionJobsResponse 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:medicalTranscriptionJobSummaries:ListMedicalTranscriptionJobsResponse', listMedicalTranscriptionJobsResponse_medicalTranscriptionJobSummaries - Provides a summary of information about each result.

ListMedicalTranscriptionJobs, listMedicalTranscriptionJobsResponse_nextToken - If NextToken is present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with the NextToken parameter in your results output, then run your request again including NextToken with the value of the copied string. Repeat as needed to view all your results.

ListMedicalTranscriptionJobs, listMedicalTranscriptionJobsResponse_status - Lists all medical transcription jobs that have the status specified in your request. Jobs are ordered by creation date, with the newest job first.

$sel:httpStatus:ListMedicalTranscriptionJobsResponse', listMedicalTranscriptionJobsResponse_httpStatus - The response's http status code.

ListMedicalVocabularies

data ListMedicalVocabularies Source #

See: newListMedicalVocabularies smart constructor.

Instances

Instances details
ToJSON ListMedicalVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

ToHeaders ListMedicalVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

ToPath ListMedicalVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

ToQuery ListMedicalVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

AWSRequest ListMedicalVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

Generic ListMedicalVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

Associated Types

type Rep ListMedicalVocabularies :: Type -> Type #

Read ListMedicalVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

Show ListMedicalVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

NFData ListMedicalVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

Methods

rnf :: ListMedicalVocabularies -> () #

Eq ListMedicalVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

Hashable ListMedicalVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

type AWSResponse ListMedicalVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

type Rep ListMedicalVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

type Rep ListMedicalVocabularies = D1 ('MetaData "ListMedicalVocabularies" "Amazonka.Transcribe.ListMedicalVocabularies" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListMedicalVocabularies'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nameContains") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "stateEquals") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VocabularyState)))))

newListMedicalVocabularies :: ListMedicalVocabularies Source #

Create a value of ListMedicalVocabularies 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:maxResults:ListMedicalVocabularies', listMedicalVocabularies_maxResults - The maximum number of custom medical vocabularies to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you don't specify a value, a default of 5 is used.

$sel:nameContains:ListMedicalVocabularies', listMedicalVocabularies_nameContains - Returns only the custom medical vocabularies that contain the specified string. The search is not case sensitive.

ListMedicalVocabularies, listMedicalVocabularies_nextToken - If your ListMedicalVocabularies request returns more results than can be displayed, NextToken is displayed in the response with an associated string. To get the next page of results, copy this string and repeat your request, including NextToken with the value of the copied string. Repeat as needed to view all your results.

$sel:stateEquals:ListMedicalVocabularies', listMedicalVocabularies_stateEquals - Returns only custom medical vocabularies with the specified state. Custom vocabularies are ordered by creation date, with the newest vocabulary first. If you don't include StateEquals, all custom medical vocabularies are returned.

data ListMedicalVocabulariesResponse Source #

See: newListMedicalVocabulariesResponse smart constructor.

Instances

Instances details
Generic ListMedicalVocabulariesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

Associated Types

type Rep ListMedicalVocabulariesResponse :: Type -> Type #

Read ListMedicalVocabulariesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

Show ListMedicalVocabulariesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

NFData ListMedicalVocabulariesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

Eq ListMedicalVocabulariesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

type Rep ListMedicalVocabulariesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListMedicalVocabularies

type Rep ListMedicalVocabulariesResponse = D1 ('MetaData "ListMedicalVocabulariesResponse" "Amazonka.Transcribe.ListMedicalVocabularies" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListMedicalVocabulariesResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VocabularyState))) :*: (S1 ('MetaSel ('Just "vocabularies") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [VocabularyInfo])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListMedicalVocabulariesResponse Source #

Create a value of ListMedicalVocabulariesResponse 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:

ListMedicalVocabularies, listMedicalVocabulariesResponse_nextToken - If NextToken is present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with the NextToken parameter in your results output, then run your request again including NextToken with the value of the copied string. Repeat as needed to view all your results.

$sel:status:ListMedicalVocabulariesResponse', listMedicalVocabulariesResponse_status - Lists all custom medical vocabularies that have the status specified in your request. Custom vocabularies are ordered by creation date, with the newest vocabulary first.

$sel:vocabularies:ListMedicalVocabulariesResponse', listMedicalVocabulariesResponse_vocabularies - Provides information about the custom medical vocabularies that match the criteria specified in your request.

$sel:httpStatus:ListMedicalVocabulariesResponse', listMedicalVocabulariesResponse_httpStatus - The response's http status code.

ListTagsForResource

data ListTagsForResource Source #

See: newListTagsForResource smart constructor.

Instances

Instances details
ToJSON ListTagsForResource Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

ToHeaders ListTagsForResource Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

ToPath ListTagsForResource Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

ToQuery ListTagsForResource Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

AWSRequest ListTagsForResource Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

Associated Types

type AWSResponse ListTagsForResource #

Generic ListTagsForResource Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

Associated Types

type Rep ListTagsForResource :: Type -> Type #

Read ListTagsForResource Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

Show ListTagsForResource Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

NFData ListTagsForResource Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

Methods

rnf :: ListTagsForResource -> () #

Eq ListTagsForResource Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

Hashable ListTagsForResource Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

type AWSResponse ListTagsForResource Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

type Rep ListTagsForResource Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

type Rep ListTagsForResource = D1 ('MetaData "ListTagsForResource" "Amazonka.Transcribe.ListTagsForResource" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListTagsForResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newListTagsForResource Source #

Create a value of ListTagsForResource 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:

ListTagsForResource, listTagsForResource_resourceArn - Returns a list of all tags associated with the specified Amazon Resource Name (ARN). ARNs have the format arn:partition:service:region:account-id:resource-type/resource-id.

For example, arn:aws:transcribe:us-west-2:111122223333:transcription-job/transcription-job-name.

Valid values for resource-type are: transcription-job, medical-transcription-job, vocabulary, medical-vocabulary, vocabulary-filter, and language-model.

data ListTagsForResourceResponse Source #

See: newListTagsForResourceResponse smart constructor.

Instances

Instances details
Generic ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

Associated Types

type Rep ListTagsForResourceResponse :: Type -> Type #

Read ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

Show ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

NFData ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

Eq ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

type Rep ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListTagsForResource

type Rep ListTagsForResourceResponse = D1 ('MetaData "ListTagsForResourceResponse" "Amazonka.Transcribe.ListTagsForResource" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListTagsForResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Tag))) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListTagsForResourceResponse Source #

Create a value of ListTagsForResourceResponse 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:

ListTagsForResource, listTagsForResourceResponse_resourceArn - The Amazon Resource Name (ARN) specified in your request.

ListTagsForResourceResponse, listTagsForResourceResponse_tags - Lists all tags associated with the given transcription job, vocabulary, model, or resource.

$sel:httpStatus:ListTagsForResourceResponse', listTagsForResourceResponse_httpStatus - The response's http status code.

ListTranscriptionJobs

data ListTranscriptionJobs Source #

See: newListTranscriptionJobs smart constructor.

Instances

Instances details
ToJSON ListTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

ToHeaders ListTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

ToPath ListTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

ToQuery ListTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

AWSRequest ListTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

Associated Types

type AWSResponse ListTranscriptionJobs #

Generic ListTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

Associated Types

type Rep ListTranscriptionJobs :: Type -> Type #

Read ListTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

Show ListTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

NFData ListTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

Methods

rnf :: ListTranscriptionJobs -> () #

Eq ListTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

Hashable ListTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

type AWSResponse ListTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

type Rep ListTranscriptionJobs Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

type Rep ListTranscriptionJobs = D1 ('MetaData "ListTranscriptionJobs" "Amazonka.Transcribe.ListTranscriptionJobs" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListTranscriptionJobs'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "jobNameContains") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TranscriptionJobStatus)))))

newListTranscriptionJobs :: ListTranscriptionJobs Source #

Create a value of ListTranscriptionJobs 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:jobNameContains:ListTranscriptionJobs', listTranscriptionJobs_jobNameContains - Returns only the transcription jobs that contain the specified string. The search is not case sensitive.

$sel:maxResults:ListTranscriptionJobs', listTranscriptionJobs_maxResults - The maximum number of transcription jobs to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you don't specify a value, a default of 5 is used.

ListTranscriptionJobs, listTranscriptionJobs_nextToken - If your ListTranscriptionJobs request returns more results than can be displayed, NextToken is displayed in the response with an associated string. To get the next page of results, copy this string and repeat your request, including NextToken with the value of the copied string. Repeat as needed to view all your results.

ListTranscriptionJobs, listTranscriptionJobs_status - Returns only transcription jobs with the specified status. Jobs are ordered by creation date, with the newest job first. If you don't include Status, all transcription jobs are returned.

data ListTranscriptionJobsResponse Source #

See: newListTranscriptionJobsResponse smart constructor.

Instances

Instances details
Generic ListTranscriptionJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

Associated Types

type Rep ListTranscriptionJobsResponse :: Type -> Type #

Read ListTranscriptionJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

Show ListTranscriptionJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

NFData ListTranscriptionJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

Eq ListTranscriptionJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

type Rep ListTranscriptionJobsResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListTranscriptionJobs

type Rep ListTranscriptionJobsResponse = D1 ('MetaData "ListTranscriptionJobsResponse" "Amazonka.Transcribe.ListTranscriptionJobs" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListTranscriptionJobsResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TranscriptionJobStatus))) :*: (S1 ('MetaSel ('Just "transcriptionJobSummaries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [TranscriptionJobSummary])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListTranscriptionJobsResponse Source #

Create a value of ListTranscriptionJobsResponse 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:

ListTranscriptionJobs, listTranscriptionJobsResponse_nextToken - If NextToken is present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with the NextToken parameter in your results output, then run your request again including NextToken with the value of the copied string. Repeat as needed to view all your results.

ListTranscriptionJobs, listTranscriptionJobsResponse_status - Lists all transcription jobs that have the status specified in your request. Jobs are ordered by creation date, with the newest job first.

$sel:transcriptionJobSummaries:ListTranscriptionJobsResponse', listTranscriptionJobsResponse_transcriptionJobSummaries - Provides a summary of information about each result.

$sel:httpStatus:ListTranscriptionJobsResponse', listTranscriptionJobsResponse_httpStatus - The response's http status code.

ListVocabularies

data ListVocabularies Source #

See: newListVocabularies smart constructor.

Instances

Instances details
ToJSON ListVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

ToHeaders ListVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

ToPath ListVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

ToQuery ListVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

AWSRequest ListVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

Associated Types

type AWSResponse ListVocabularies #

Generic ListVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

Associated Types

type Rep ListVocabularies :: Type -> Type #

Read ListVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

Show ListVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

NFData ListVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

Methods

rnf :: ListVocabularies -> () #

Eq ListVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

Hashable ListVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

type AWSResponse ListVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

type Rep ListVocabularies Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

type Rep ListVocabularies = D1 ('MetaData "ListVocabularies" "Amazonka.Transcribe.ListVocabularies" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListVocabularies'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nameContains") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "stateEquals") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VocabularyState)))))

newListVocabularies :: ListVocabularies Source #

Create a value of ListVocabularies 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:maxResults:ListVocabularies', listVocabularies_maxResults - The maximum number of custom vocabularies to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you don't specify a value, a default of 5 is used.

$sel:nameContains:ListVocabularies', listVocabularies_nameContains - Returns only the custom vocabularies that contain the specified string. The search is not case sensitive.

ListVocabularies, listVocabularies_nextToken - If your ListVocabularies request returns more results than can be displayed, NextToken is displayed in the response with an associated string. To get the next page of results, copy this string and repeat your request, including NextToken with the value of the copied string. Repeat as needed to view all your results.

$sel:stateEquals:ListVocabularies', listVocabularies_stateEquals - Returns only custom vocabularies with the specified state. Vocabularies are ordered by creation date, with the newest vocabulary first. If you don't include StateEquals, all custom medical vocabularies are returned.

data ListVocabulariesResponse Source #

See: newListVocabulariesResponse smart constructor.

Instances

Instances details
Generic ListVocabulariesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

Associated Types

type Rep ListVocabulariesResponse :: Type -> Type #

Read ListVocabulariesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

Show ListVocabulariesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

NFData ListVocabulariesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

Eq ListVocabulariesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

type Rep ListVocabulariesResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularies

type Rep ListVocabulariesResponse = D1 ('MetaData "ListVocabulariesResponse" "Amazonka.Transcribe.ListVocabularies" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListVocabulariesResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VocabularyState))) :*: (S1 ('MetaSel ('Just "vocabularies") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [VocabularyInfo])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListVocabulariesResponse Source #

Create a value of ListVocabulariesResponse 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:

ListVocabularies, listVocabulariesResponse_nextToken - If NextToken is present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with the NextToken parameter in your results output, then run your request again including NextToken with the value of the copied string. Repeat as needed to view all your results.

$sel:status:ListVocabulariesResponse', listVocabulariesResponse_status - Lists all custom vocabularies that have the status specified in your request. Vocabularies are ordered by creation date, with the newest vocabulary first.

$sel:vocabularies:ListVocabulariesResponse', listVocabulariesResponse_vocabularies - Provides information about the custom vocabularies that match the criteria specified in your request.

$sel:httpStatus:ListVocabulariesResponse', listVocabulariesResponse_httpStatus - The response's http status code.

ListVocabularyFilters

data ListVocabularyFilters Source #

See: newListVocabularyFilters smart constructor.

Instances

Instances details
ToJSON ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

ToHeaders ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

ToPath ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

ToQuery ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

AWSRequest ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Associated Types

type AWSResponse ListVocabularyFilters #

Generic ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Associated Types

type Rep ListVocabularyFilters :: Type -> Type #

Read ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Show ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

NFData ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Methods

rnf :: ListVocabularyFilters -> () #

Eq ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Hashable ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

type AWSResponse ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

type Rep ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

type Rep ListVocabularyFilters = D1 ('MetaData "ListVocabularyFilters" "Amazonka.Transcribe.ListVocabularyFilters" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListVocabularyFilters'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "nameContains") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newListVocabularyFilters :: ListVocabularyFilters Source #

Create a value of ListVocabularyFilters 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:maxResults:ListVocabularyFilters', listVocabularyFilters_maxResults - The maximum number of custom vocabulary filters to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you don't specify a value, a default of 5 is used.

$sel:nameContains:ListVocabularyFilters', listVocabularyFilters_nameContains - Returns only the custom vocabulary filters that contain the specified string. The search is not case sensitive.

ListVocabularyFilters, listVocabularyFilters_nextToken - If your ListVocabularyFilters request returns more results than can be displayed, NextToken is displayed in the response with an associated string. To get the next page of results, copy this string and repeat your request, including NextToken with the value of the copied string. Repeat as needed to view all your results.

data ListVocabularyFiltersResponse Source #

See: newListVocabularyFiltersResponse smart constructor.

Instances

Instances details
Generic ListVocabularyFiltersResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Associated Types

type Rep ListVocabularyFiltersResponse :: Type -> Type #

Read ListVocabularyFiltersResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Show ListVocabularyFiltersResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

NFData ListVocabularyFiltersResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Eq ListVocabularyFiltersResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

type Rep ListVocabularyFiltersResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

type Rep ListVocabularyFiltersResponse = D1 ('MetaData "ListVocabularyFiltersResponse" "Amazonka.Transcribe.ListVocabularyFilters" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListVocabularyFiltersResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "vocabularyFilters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [VocabularyFilterInfo])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListVocabularyFiltersResponse Source #

Create a value of ListVocabularyFiltersResponse 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:

ListVocabularyFilters, listVocabularyFiltersResponse_nextToken - If NextToken is present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with the NextToken parameter in your results output, then run your request again including NextToken with the value of the copied string. Repeat as needed to view all your results.

$sel:vocabularyFilters:ListVocabularyFiltersResponse', listVocabularyFiltersResponse_vocabularyFilters - Provides information about the custom vocabulary filters that match the criteria specified in your request.

$sel:httpStatus:ListVocabularyFiltersResponse', listVocabularyFiltersResponse_httpStatus - The response's http status code.

StartCallAnalyticsJob

data StartCallAnalyticsJob Source #

See: newStartCallAnalyticsJob smart constructor.

Instances

Instances details
ToJSON StartCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

ToHeaders StartCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

ToPath StartCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

ToQuery StartCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

AWSRequest StartCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

Associated Types

type AWSResponse StartCallAnalyticsJob #

Generic StartCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

Associated Types

type Rep StartCallAnalyticsJob :: Type -> Type #

Read StartCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

Show StartCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

NFData StartCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

Methods

rnf :: StartCallAnalyticsJob -> () #

Eq StartCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

Hashable StartCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

type AWSResponse StartCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

type Rep StartCallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

type Rep StartCallAnalyticsJob = D1 ('MetaData "StartCallAnalyticsJob" "Amazonka.Transcribe.StartCallAnalyticsJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "StartCallAnalyticsJob'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "channelDefinitions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty ChannelDefinition))) :*: (S1 ('MetaSel ('Just "dataAccessRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "outputEncryptionKMSKeyId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "outputLocation") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "settings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CallAnalyticsJobSettings))) :*: (S1 ('MetaSel ('Just "callAnalyticsJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "media") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Media)))))

newStartCallAnalyticsJob Source #

Create a value of StartCallAnalyticsJob 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:

StartCallAnalyticsJob, startCallAnalyticsJob_channelDefinitions - Makes it possible to specify which speaker is on which channel. For example, if your agent is the first participant to speak, you would set ChannelId to 0 (to indicate the first channel) and ParticipantRole to AGENT (to indicate that it's the agent speaking).

StartCallAnalyticsJob, startCallAnalyticsJob_dataAccessRoleArn - The Amazon Resource Name (ARN) of an IAM role that has permissions to access the Amazon S3 bucket that contains your input files. If the role that you specify doesn’t have the appropriate permissions to access the specified Amazon S3 location, your request fails.

IAM role ARNs have the format arn:partition:iam::account:role/role-name-with-path. For example: arn:aws:iam::111122223333:role/Admin.

For more information, see IAM ARNs.

$sel:outputEncryptionKMSKeyId:StartCallAnalyticsJob', startCallAnalyticsJob_outputEncryptionKMSKeyId - The KMS key you want to use to encrypt your Call Analytics output.

If using a key located in the current Amazon Web Services account, you can specify your KMS key in one of four ways:

  1. Use the KMS key ID itself. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
  2. Use an alias for the KMS key ID. For example, alias/ExampleAlias.
  3. Use the Amazon Resource Name (ARN) for the KMS key ID. For example, arn:aws:kms:region:account-ID:key/1234abcd-12ab-34cd-56ef-1234567890ab.
  4. Use the ARN for the KMS key alias. For example, arn:aws:kms:region:account-ID:alias/ExampleAlias.

If using a key located in a different Amazon Web Services account than the current Amazon Web Services account, you can specify your KMS key in one of two ways:

  1. Use the ARN for the KMS key ID. For example, arn:aws:kms:region:account-ID:key/1234abcd-12ab-34cd-56ef-1234567890ab.
  2. Use the ARN for the KMS key alias. For example, arn:aws:kms:region:account-ID:alias/ExampleAlias.

If you don't specify an encryption key, your output is encrypted with the default Amazon S3 key (SSE-S3).

If you specify a KMS key to encrypt your output, you must also specify an output location using the OutputLocation parameter.

Note that the user making the request must have permission to use the specified KMS key.

$sel:outputLocation:StartCallAnalyticsJob', startCallAnalyticsJob_outputLocation - The Amazon S3 location where you want your Call Analytics transcription output stored. You can use any of the following formats to specify the output location:

  1. s3://DOC-EXAMPLE-BUCKET
  2. s3://DOC-EXAMPLE-BUCKET/my-output-folder/
  3. s3://DOC-EXAMPLE-BUCKET/my-output-folder/my-call-analytics-job.json

Unless you specify a file name (option 3), the name of your output file has a default value that matches the name you specified for your transcription job using the CallAnalyticsJobName parameter.

You can specify a KMS key to encrypt your output using the OutputEncryptionKMSKeyId parameter. If you don't specify a KMS key, Amazon Transcribe uses the default Amazon S3 key for server-side encryption.

If you don't specify OutputLocation, your transcript is placed in a service-managed Amazon S3 bucket and you are provided with a URI to access your transcript.

StartCallAnalyticsJob, startCallAnalyticsJob_settings - Specify additional optional settings in your request, including content redaction; allows you to apply custom language models, vocabulary filters, and custom vocabularies to your Call Analytics job.

StartCallAnalyticsJob, startCallAnalyticsJob_callAnalyticsJobName - A unique name, chosen by you, for your Call Analytics job.

This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account. If you try to create a new job with the same name as an existing job, you get a ConflictException error.

StartCallAnalyticsJob, startCallAnalyticsJob_media - Describes the Amazon S3 location of the media file you want to use in your Call Analytics request.

data StartCallAnalyticsJobResponse Source #

See: newStartCallAnalyticsJobResponse smart constructor.

Instances

Instances details
Generic StartCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

Associated Types

type Rep StartCallAnalyticsJobResponse :: Type -> Type #

Read StartCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

Show StartCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

NFData StartCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

Eq StartCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

type Rep StartCallAnalyticsJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartCallAnalyticsJob

type Rep StartCallAnalyticsJobResponse = D1 ('MetaData "StartCallAnalyticsJobResponse" "Amazonka.Transcribe.StartCallAnalyticsJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "StartCallAnalyticsJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "callAnalyticsJob") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CallAnalyticsJob)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newStartCallAnalyticsJobResponse Source #

Create a value of StartCallAnalyticsJobResponse 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:callAnalyticsJob:StartCallAnalyticsJobResponse', startCallAnalyticsJobResponse_callAnalyticsJob - Provides detailed information about the current Call Analytics job, including job status and, if applicable, failure reason.

$sel:httpStatus:StartCallAnalyticsJobResponse', startCallAnalyticsJobResponse_httpStatus - The response's http status code.

StartMedicalTranscriptionJob

data StartMedicalTranscriptionJob Source #

See: newStartMedicalTranscriptionJob smart constructor.

Instances

Instances details
ToJSON StartMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

ToHeaders StartMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

ToPath StartMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

ToQuery StartMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

AWSRequest StartMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

Generic StartMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

Associated Types

type Rep StartMedicalTranscriptionJob :: Type -> Type #

Read StartMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

Show StartMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

NFData StartMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

Eq StartMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

Hashable StartMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

type AWSResponse StartMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

type Rep StartMedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

type Rep StartMedicalTranscriptionJob = D1 ('MetaData "StartMedicalTranscriptionJob" "Amazonka.Transcribe.StartMedicalTranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "StartMedicalTranscriptionJob'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "contentIdentificationType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe MedicalContentIdentificationType)) :*: (S1 ('MetaSel ('Just "kmsEncryptionContext") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "mediaFormat") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe MediaFormat)))) :*: ((S1 ('MetaSel ('Just "mediaSampleRateHertz") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "outputEncryptionKMSKeyId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "outputKey") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "settings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe MedicalTranscriptionSetting))))) :*: ((S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Tag))) :*: (S1 ('MetaSel ('Just "medicalTranscriptionJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 LanguageCode))) :*: ((S1 ('MetaSel ('Just "media") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Media) :*: S1 ('MetaSel ('Just "outputBucketName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "specialty") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Specialty) :*: S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Type))))))

newStartMedicalTranscriptionJob Source #

Create a value of StartMedicalTranscriptionJob 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:

StartMedicalTranscriptionJob, startMedicalTranscriptionJob_contentIdentificationType - Labels all personal health information (PHI) identified in your transcript. For more information, see Identifying personal health information (PHI) in a transcription.

$sel:kmsEncryptionContext:StartMedicalTranscriptionJob', startMedicalTranscriptionJob_kmsEncryptionContext - A map of plain text, non-secret key:value pairs, known as encryption context pairs, that provide an added layer of security for your data. For more information, see KMS encryption context and Asymmetric keys in KMS.

StartMedicalTranscriptionJob, startMedicalTranscriptionJob_mediaFormat - Specify the format of your input media file.

StartMedicalTranscriptionJob, startMedicalTranscriptionJob_mediaSampleRateHertz - The sample rate, in hertz, of the audio track in your input media file.

If you don't specify the media sample rate, Amazon Transcribe Medical determines it for you. If you specify the sample rate, it must match the rate detected by Amazon Transcribe Medical; if there's a mismatch between the value that you specify and the value detected, your job fails. Therefore, in most cases, it's advised to omit MediaSampleRateHertz and let Amazon Transcribe Medical determine the sample rate.

$sel:outputEncryptionKMSKeyId:StartMedicalTranscriptionJob', startMedicalTranscriptionJob_outputEncryptionKMSKeyId - The KMS key you want to use to encrypt your medical transcription output.

If using a key located in the current Amazon Web Services account, you can specify your KMS key in one of four ways:

  1. Use the KMS key ID itself. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
  2. Use an alias for the KMS key ID. For example, alias/ExampleAlias.
  3. Use the Amazon Resource Name (ARN) for the KMS key ID. For example, arn:aws:kms:region:account-ID:key/1234abcd-12ab-34cd-56ef-1234567890ab.
  4. Use the ARN for the KMS key alias. For example, arn:aws:kms:region:account-ID:alias/ExampleAlias.

If using a key located in a different Amazon Web Services account than the current Amazon Web Services account, you can specify your KMS key in one of two ways:

  1. Use the ARN for the KMS key ID. For example, arn:aws:kms:region:account-ID:key/1234abcd-12ab-34cd-56ef-1234567890ab.
  2. Use the ARN for the KMS key alias. For example, arn:aws:kms:region:account-ID:alias/ExampleAlias.

If you don't specify an encryption key, your output is encrypted with the default Amazon S3 key (SSE-S3).

If you specify a KMS key to encrypt your output, you must also specify an output location using the OutputLocation parameter.

Note that the user making the request must have permission to use the specified KMS key.

$sel:outputKey:StartMedicalTranscriptionJob', startMedicalTranscriptionJob_outputKey - Use in combination with OutputBucketName to specify the output location of your transcript and, optionally, a unique name for your output file. The default name for your transcription output is the same as the name you specified for your medical transcription job (MedicalTranscriptionJobName).

Here are some examples of how you can use OutputKey:

  • If you specify 'DOC-EXAMPLE-BUCKET' as the OutputBucketName and 'my-transcript.json' as the OutputKey, your transcription output path is s3://DOC-EXAMPLE-BUCKET/my-transcript.json.
  • If you specify 'my-first-transcription' as the MedicalTranscriptionJobName, 'DOC-EXAMPLE-BUCKET' as the OutputBucketName, and 'my-transcript' as the OutputKey, your transcription output path is s3://DOC-EXAMPLE-BUCKET/my-transcript/my-first-transcription.json.
  • If you specify 'DOC-EXAMPLE-BUCKET' as the OutputBucketName and 'test-files/my-transcript.json' as the OutputKey, your transcription output path is s3://DOC-EXAMPLE-BUCKET/test-files/my-transcript.json.
  • If you specify 'my-first-transcription' as the MedicalTranscriptionJobName, 'DOC-EXAMPLE-BUCKET' as the OutputBucketName, and 'test-files/my-transcript' as the OutputKey, your transcription output path is s3://DOC-EXAMPLE-BUCKET/test-files/my-transcript/my-first-transcription.json.

If you specify the name of an Amazon S3 bucket sub-folder that doesn't exist, one is created for you.

StartMedicalTranscriptionJob, startMedicalTranscriptionJob_settings - Specify additional optional settings in your request, including channel identification, alternative transcriptions, and speaker partitioning. You can use that to apply custom vocabularies to your transcription job.

StartMedicalTranscriptionJob, startMedicalTranscriptionJob_tags - Adds one or more custom tags, each in the form of a key:value pair, to a new medical transcription job at the time you start this new job.

To learn more about using tags with Amazon Transcribe, refer to Tagging resources.

StartMedicalTranscriptionJob, startMedicalTranscriptionJob_medicalTranscriptionJobName - A unique name, chosen by you, for your medical transcription job. The name that you specify is also used as the default name of your transcription output file. If you want to specify a different name for your transcription output, use the OutputKey parameter.

This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account. If you try to create a new job with the same name as an existing job, you get a ConflictException error.

StartMedicalTranscriptionJob, startMedicalTranscriptionJob_languageCode - The language code that represents the language spoken in the input media file. US English (en-US) is the only valid value for medical transcription jobs. Any other value you enter for language code results in a BadRequestException error.

StartMedicalTranscriptionJob, startMedicalTranscriptionJob_media - Undocumented member.

$sel:outputBucketName:StartMedicalTranscriptionJob', startMedicalTranscriptionJob_outputBucketName - The name of the Amazon S3 bucket where you want your medical transcription output stored. Do not include the S3:// prefix of the specified bucket.

If you want your output to go to a sub-folder of this bucket, specify it using the OutputKey parameter; OutputBucketName only accepts the name of a bucket.

For example, if you want your output stored in S3://DOC-EXAMPLE-BUCKET, set OutputBucketName to DOC-EXAMPLE-BUCKET. However, if you want your output stored in S3://DOC-EXAMPLE-BUCKET/test-files/, set OutputBucketName to DOC-EXAMPLE-BUCKET and OutputKey to test-files/.

Note that Amazon Transcribe must have permission to use the specified location. You can change Amazon S3 permissions using the Amazon Web Services Management Console. See also Permissions Required for IAM User Roles.

StartMedicalTranscriptionJob, startMedicalTranscriptionJob_specialty - Specify the predominant medical specialty represented in your media. For batch transcriptions, PRIMARYCARE is the only valid value. If you require additional specialties, refer to .

StartMedicalTranscriptionJob, startMedicalTranscriptionJob_type - Specify whether your input media contains only one person (DICTATION) or contains a conversation between two people (CONVERSATION).

For example, DICTATION could be used for a medical professional wanting to transcribe voice memos; CONVERSATION could be used for transcribing the doctor-patient dialogue during the patient's office visit.

data StartMedicalTranscriptionJobResponse Source #

Instances

Instances details
Generic StartMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

Read StartMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

Show StartMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

NFData StartMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

Eq StartMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

type Rep StartMedicalTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartMedicalTranscriptionJob

type Rep StartMedicalTranscriptionJobResponse = D1 ('MetaData "StartMedicalTranscriptionJobResponse" "Amazonka.Transcribe.StartMedicalTranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "StartMedicalTranscriptionJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "medicalTranscriptionJob") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe MedicalTranscriptionJob)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newStartMedicalTranscriptionJobResponse Source #

Create a value of StartMedicalTranscriptionJobResponse 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:medicalTranscriptionJob:StartMedicalTranscriptionJobResponse', startMedicalTranscriptionJobResponse_medicalTranscriptionJob - Provides detailed information about the current medical transcription job, including job status and, if applicable, failure reason.

$sel:httpStatus:StartMedicalTranscriptionJobResponse', startMedicalTranscriptionJobResponse_httpStatus - The response's http status code.

StartTranscriptionJob

data StartTranscriptionJob Source #

See: newStartTranscriptionJob smart constructor.

Instances

Instances details
ToJSON StartTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

ToHeaders StartTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

ToPath StartTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

ToQuery StartTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

AWSRequest StartTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

Associated Types

type AWSResponse StartTranscriptionJob #

Generic StartTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

Associated Types

type Rep StartTranscriptionJob :: Type -> Type #

Read StartTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

Show StartTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

NFData StartTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

Methods

rnf :: StartTranscriptionJob -> () #

Eq StartTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

Hashable StartTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

type AWSResponse StartTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

type Rep StartTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

type Rep StartTranscriptionJob = D1 ('MetaData "StartTranscriptionJob" "Amazonka.Transcribe.StartTranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "StartTranscriptionJob'" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "contentRedaction") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ContentRedaction)) :*: S1 ('MetaSel ('Just "identifyLanguage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "identifyMultipleLanguages") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "jobExecutionSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe JobExecutionSettings)))) :*: ((S1 ('MetaSel ('Just "kmsEncryptionContext") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode))) :*: (S1 ('MetaSel ('Just "languageIdSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap LanguageCode LanguageIdSettings))) :*: (S1 ('MetaSel ('Just "languageOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty LanguageCode))) :*: S1 ('MetaSel ('Just "mediaFormat") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe MediaFormat)))))) :*: (((S1 ('MetaSel ('Just "mediaSampleRateHertz") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "modelSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelSettings))) :*: (S1 ('MetaSel ('Just "outputBucketName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "outputEncryptionKMSKeyId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "outputKey") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 ('MetaSel ('Just "settings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Settings)) :*: S1 ('MetaSel ('Just "subtitles") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Subtitles))) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Tag))) :*: (S1 ('MetaSel ('Just "transcriptionJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "media") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Media)))))))

newStartTranscriptionJob Source #

Create a value of StartTranscriptionJob 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:

StartTranscriptionJob, startTranscriptionJob_contentRedaction - 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.

StartTranscriptionJob, startTranscriptionJob_identifyLanguage - Enables automatic language identification in your transcription job request. Use this parameter if your media file contains only one language. If your media contains multiple languages, use IdentifyMultipleLanguages instead.

If you include IdentifyLanguage, you can optionally include a list of language codes, using LanguageOptions, that you think may be present in your media file. Including LanguageOptions restricts IdentifyLanguage to only the language options that you specify, which can improve transcription accuracy.

If you want to apply a custom language model, a custom vocabulary, or a custom vocabulary filter to your automatic language identification request, include LanguageIdSettings with the relevant sub-parameters (VocabularyName, LanguageModelName, and VocabularyFilterName). If you include LanguageIdSettings, also include LanguageOptions.

Note that you must include one of LanguageCode, IdentifyLanguage, or IdentifyMultipleLanguages in your request. If you include more than one of these parameters, your transcription job fails.

StartTranscriptionJob, startTranscriptionJob_identifyMultipleLanguages - Enables automatic multi-language identification in your transcription job request. Use this parameter if your media file contains more than one language. If your media contains only one language, use IdentifyLanguage instead.

If you include IdentifyMultipleLanguages, you can optionally include a list of language codes, using LanguageOptions, that you think may be present in your media file. Including LanguageOptions restricts IdentifyLanguage to only the language options that you specify, which can improve transcription accuracy.

If you want to apply a custom vocabulary or a custom vocabulary filter to your automatic language identification request, include LanguageIdSettings with the relevant sub-parameters (VocabularyName and VocabularyFilterName). If you include LanguageIdSettings, also include LanguageOptions.

Note that you must include one of LanguageCode, IdentifyLanguage, or IdentifyMultipleLanguages in your request. If you include more than one of these parameters, your transcription job fails.

StartTranscriptionJob, startTranscriptionJob_jobExecutionSettings - Makes it possible to control how your transcription job is processed. Currently, the only JobExecutionSettings modification you can choose is enabling job queueing using the AllowDeferredExecution sub-parameter.

If you include JobExecutionSettings in your request, you must also include the sub-parameters: AllowDeferredExecution and DataAccessRoleArn.

$sel:kmsEncryptionContext:StartTranscriptionJob', startTranscriptionJob_kmsEncryptionContext - A map of plain text, non-secret key:value pairs, known as encryption context pairs, that provide an added layer of security for your data. For more information, see KMS encryption context and Asymmetric keys in KMS.

StartTranscriptionJob, startTranscriptionJob_languageCode - The language code that represents the language spoken in the input media file.

If you're unsure of the language spoken in your media file, consider using IdentifyLanguage or IdentifyMultipleLanguages to enable automatic language identification.

Note that you must include one of LanguageCode, IdentifyLanguage, or IdentifyMultipleLanguages in your request. If you include more than one of these parameters, your transcription job fails.

For a list of supported languages and their associated language codes, refer to the Supported languages table.

To transcribe speech in Modern Standard Arabic (ar-SA), your media file must be encoded at a sample rate of 16,000 Hz or higher.

StartTranscriptionJob, startTranscriptionJob_languageIdSettings - If using automatic language identification in your request and you want to apply a custom language model, a custom vocabulary, or a custom vocabulary filter, include LanguageIdSettings with the relevant sub-parameters (VocabularyName, LanguageModelName, and VocabularyFilterName). Note that multi-language identification (IdentifyMultipleLanguages) doesn't support custom language models.

LanguageIdSettings supports two to five language codes. Each language code you include can have an associated custom language model, custom vocabulary, and custom vocabulary filter. The language codes that you specify must match the languages of the associated custom language models, custom vocabularies, and custom vocabulary filters.

It's recommended that you include LanguageOptions when using LanguageIdSettings to ensure that the correct language dialect is identified. For example, if you specify a custom vocabulary that is in en-US but Amazon Transcribe determines that the language spoken in your media is en-AU, your custom vocabulary is not applied to your transcription. If you include LanguageOptions and include en-US as the only English language dialect, your custom vocabulary is applied to your transcription.

If you want to include a custom language model with your request but do not want to use automatic language identification, use instead the parameter with the LanguageModelName sub-parameter. If you want to include a custom vocabulary or a custom vocabulary filter (or both) with your request but do not want to use automatic language identification, use instead the parameter with the VocabularyName or VocabularyFilterName (or both) sub-parameter.

StartTranscriptionJob, startTranscriptionJob_languageOptions - You can specify two or more language codes that represent the languages you think may be present in your media. Including more than five is not recommended. If you're unsure what languages are present, do not include this parameter.

If you include LanguageOptions in your request, you must also include IdentifyLanguage.

For more information, refer to Supported languages.

To transcribe speech in Modern Standard Arabic (ar-SA), your media file must be encoded at a sample rate of 16,000 Hz or higher.

StartTranscriptionJob, startTranscriptionJob_mediaFormat - Specify the format of your input media file.

StartTranscriptionJob, startTranscriptionJob_mediaSampleRateHertz - The sample rate, in hertz, of the audio track in your input media file.

If you don't specify the media sample rate, Amazon Transcribe determines it for you. If you specify the sample rate, it must match the rate detected by Amazon Transcribe. If there's a mismatch between the value that you specify and the value detected, your job fails. In most cases, you can omit MediaSampleRateHertz and let Amazon Transcribe determine the sample rate.

StartTranscriptionJob, startTranscriptionJob_modelSettings - Specify the custom language model you want to include with your transcription job. If you include ModelSettings in your request, you must include the LanguageModelName sub-parameter.

For more information, see Custom language models.

$sel:outputBucketName:StartTranscriptionJob', startTranscriptionJob_outputBucketName - The name of the Amazon S3 bucket where you want your transcription output stored. Do not include the S3:// prefix of the specified bucket.

If you want your output to go to a sub-folder of this bucket, specify it using the OutputKey parameter; OutputBucketName only accepts the name of a bucket.

For example, if you want your output stored in S3://DOC-EXAMPLE-BUCKET, set OutputBucketName to DOC-EXAMPLE-BUCKET. However, if you want your output stored in S3://DOC-EXAMPLE-BUCKET/test-files/, set OutputBucketName to DOC-EXAMPLE-BUCKET and OutputKey to test-files/.

Note that Amazon Transcribe must have permission to use the specified location. You can change Amazon S3 permissions using the Amazon Web Services Management Console. See also Permissions Required for IAM User Roles.

If you don't specify OutputBucketName, your transcript is placed in a service-managed Amazon S3 bucket and you are provided with a URI to access your transcript.

$sel:outputEncryptionKMSKeyId:StartTranscriptionJob', startTranscriptionJob_outputEncryptionKMSKeyId - The KMS key you want to use to encrypt your transcription output.

If using a key located in the current Amazon Web Services account, you can specify your KMS key in one of four ways:

  1. Use the KMS key ID itself. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
  2. Use an alias for the KMS key ID. For example, alias/ExampleAlias.
  3. Use the Amazon Resource Name (ARN) for the KMS key ID. For example, arn:aws:kms:region:account-ID:key/1234abcd-12ab-34cd-56ef-1234567890ab.
  4. Use the ARN for the KMS key alias. For example, arn:aws:kms:region:account-ID:alias/ExampleAlias.

If using a key located in a different Amazon Web Services account than the current Amazon Web Services account, you can specify your KMS key in one of two ways:

  1. Use the ARN for the KMS key ID. For example, arn:aws:kms:region:account-ID:key/1234abcd-12ab-34cd-56ef-1234567890ab.
  2. Use the ARN for the KMS key alias. For example, arn:aws:kms:region:account-ID:alias/ExampleAlias.

If you don't specify an encryption key, your output is encrypted with the default Amazon S3 key (SSE-S3).

If you specify a KMS key to encrypt your output, you must also specify an output location using the OutputLocation parameter.

Note that the user making the request must have permission to use the specified KMS key.

$sel:outputKey:StartTranscriptionJob', startTranscriptionJob_outputKey - Use in combination with OutputBucketName to specify the output location of your transcript and, optionally, a unique name for your output file. The default name for your transcription output is the same as the name you specified for your transcription job (TranscriptionJobName).

Here are some examples of how you can use OutputKey:

  • If you specify 'DOC-EXAMPLE-BUCKET' as the OutputBucketName and 'my-transcript.json' as the OutputKey, your transcription output path is s3://DOC-EXAMPLE-BUCKET/my-transcript.json.
  • If you specify 'my-first-transcription' as the TranscriptionJobName, 'DOC-EXAMPLE-BUCKET' as the OutputBucketName, and 'my-transcript' as the OutputKey, your transcription output path is s3://DOC-EXAMPLE-BUCKET/my-transcript/my-first-transcription.json.
  • If you specify 'DOC-EXAMPLE-BUCKET' as the OutputBucketName and 'test-files/my-transcript.json' as the OutputKey, your transcription output path is s3://DOC-EXAMPLE-BUCKET/test-files/my-transcript.json.
  • If you specify 'my-first-transcription' as the TranscriptionJobName, 'DOC-EXAMPLE-BUCKET' as the OutputBucketName, and 'test-files/my-transcript' as the OutputKey, your transcription output path is s3://DOC-EXAMPLE-BUCKET/test-files/my-transcript/my-first-transcription.json.

If you specify the name of an Amazon S3 bucket sub-folder that doesn't exist, one is created for you.

StartTranscriptionJob, startTranscriptionJob_settings - Specify additional optional settings in your request, including channel identification, alternative transcriptions, speaker partitioning. You can use that to apply custom vocabularies and vocabulary filters.

If you want to include a custom vocabulary or a custom vocabulary filter (or both) with your request but do not want to use automatic language identification, use Settings with the VocabularyName or VocabularyFilterName (or both) sub-parameter.

If you're using automatic language identification with your request and want to include a custom language model, a custom vocabulary, or a custom vocabulary filter, use instead the parameter with the LanguageModelName, VocabularyName or VocabularyFilterName sub-parameters.

StartTranscriptionJob, startTranscriptionJob_subtitles - Produces subtitle files for your input media. You can specify WebVTT (*.vtt) and SubRip (*.srt) formats.

StartTranscriptionJob, startTranscriptionJob_tags - Adds one or more custom tags, each in the form of a key:value pair, to a new transcription job at the time you start this new job.

To learn more about using tags with Amazon Transcribe, refer to Tagging resources.

StartTranscriptionJob, startTranscriptionJob_transcriptionJobName - A unique name, chosen by you, for your transcription job. The name that you specify is also used as the default name of your transcription output file. If you want to specify a different name for your transcription output, use the OutputKey parameter.

This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account. If you try to create a new job with the same name as an existing job, you get a ConflictException error.

StartTranscriptionJob, startTranscriptionJob_media - Describes the Amazon S3 location of the media file you want to use in your request.

data StartTranscriptionJobResponse Source #

See: newStartTranscriptionJobResponse smart constructor.

Instances

Instances details
Generic StartTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

Associated Types

type Rep StartTranscriptionJobResponse :: Type -> Type #

Read StartTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

Show StartTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

NFData StartTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

Eq StartTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

type Rep StartTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.StartTranscriptionJob

type Rep StartTranscriptionJobResponse = D1 ('MetaData "StartTranscriptionJobResponse" "Amazonka.Transcribe.StartTranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "StartTranscriptionJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "transcriptionJob") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TranscriptionJob)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newStartTranscriptionJobResponse Source #

Create a value of StartTranscriptionJobResponse 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:transcriptionJob:StartTranscriptionJobResponse', startTranscriptionJobResponse_transcriptionJob - Provides detailed information about the current transcription job, including job status and, if applicable, failure reason.

$sel:httpStatus:StartTranscriptionJobResponse', startTranscriptionJobResponse_httpStatus - The response's http status code.

TagResource

data TagResource Source #

See: newTagResource smart constructor.

Constructors

TagResource' Text (NonEmpty Tag) 

Instances

Instances details
ToJSON TagResource Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

ToHeaders TagResource Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

Methods

toHeaders :: TagResource -> [Header] #

ToPath TagResource Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

ToQuery TagResource Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

AWSRequest TagResource Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

Associated Types

type AWSResponse TagResource #

Generic TagResource Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

Associated Types

type Rep TagResource :: Type -> Type #

Read TagResource Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

Show TagResource Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

NFData TagResource Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

Methods

rnf :: TagResource -> () #

Eq TagResource Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

Hashable TagResource Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

type AWSResponse TagResource Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

type Rep TagResource Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

type Rep TagResource = D1 ('MetaData "TagResource" "Amazonka.Transcribe.TagResource" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "TagResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Tag))))

newTagResource Source #

Create a value of TagResource 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:resourceArn:TagResource', tagResource_resourceArn - The Amazon Resource Name (ARN) of the resource you want to tag. ARNs have the format arn:partition:service:region:account-id:resource-type/resource-id.

For example, arn:aws:transcribe:us-west-2:111122223333:transcription-job/transcription-job-name.

Valid values for resource-type are: transcription-job, medical-transcription-job, vocabulary, medical-vocabulary, vocabulary-filter, and language-model.

TagResource, tagResource_tags - Adds one or more custom tags, each in the form of a key:value pair, to the specified resource.

To learn more about using tags with Amazon Transcribe, refer to Tagging resources.

data TagResourceResponse Source #

See: newTagResourceResponse smart constructor.

Instances

Instances details
Generic TagResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

Associated Types

type Rep TagResourceResponse :: Type -> Type #

Read TagResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

Show TagResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

NFData TagResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

Methods

rnf :: TagResourceResponse -> () #

Eq TagResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

type Rep TagResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.TagResource

type Rep TagResourceResponse = D1 ('MetaData "TagResourceResponse" "Amazonka.Transcribe.TagResource" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "TagResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newTagResourceResponse Source #

Create a value of TagResourceResponse 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:httpStatus:TagResourceResponse', tagResourceResponse_httpStatus - The response's http status code.

UntagResource

data UntagResource Source #

See: newUntagResource smart constructor.

Instances

Instances details
ToJSON UntagResource Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

ToHeaders UntagResource Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

ToPath UntagResource Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

ToQuery UntagResource Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

AWSRequest UntagResource Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

Associated Types

type AWSResponse UntagResource #

Generic UntagResource Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

Associated Types

type Rep UntagResource :: Type -> Type #

Read UntagResource Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

Show UntagResource Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

NFData UntagResource Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

Methods

rnf :: UntagResource -> () #

Eq UntagResource Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

Hashable UntagResource Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

type AWSResponse UntagResource Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

type Rep UntagResource Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

type Rep UntagResource = D1 ('MetaData "UntagResource" "Amazonka.Transcribe.UntagResource" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "UntagResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tagKeys") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text))))

newUntagResource Source #

Create a value of UntagResource 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:resourceArn:UntagResource', untagResource_resourceArn - The Amazon Resource Name (ARN) of the Amazon Transcribe resource you want to remove tags from. ARNs have the format arn:partition:service:region:account-id:resource-type/resource-id.

For example, arn:aws:transcribe:us-west-2:111122223333:transcription-job/transcription-job-name.

Valid values for resource-type are: transcription-job, medical-transcription-job, vocabulary, medical-vocabulary, vocabulary-filter, and language-model.

$sel:tagKeys:UntagResource', untagResource_tagKeys - Removes the specified tag keys from the specified Amazon Transcribe resource.

data UntagResourceResponse Source #

See: newUntagResourceResponse smart constructor.

Instances

Instances details
Generic UntagResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

Associated Types

type Rep UntagResourceResponse :: Type -> Type #

Read UntagResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

Show UntagResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

NFData UntagResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

Methods

rnf :: UntagResourceResponse -> () #

Eq UntagResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

type Rep UntagResourceResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UntagResource

type Rep UntagResourceResponse = D1 ('MetaData "UntagResourceResponse" "Amazonka.Transcribe.UntagResource" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "UntagResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUntagResourceResponse Source #

Create a value of UntagResourceResponse 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:httpStatus:UntagResourceResponse', untagResourceResponse_httpStatus - The response's http status code.

UpdateCallAnalyticsCategory

data UpdateCallAnalyticsCategory Source #

See: newUpdateCallAnalyticsCategory smart constructor.

Instances

Instances details
ToJSON UpdateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

ToHeaders UpdateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

ToPath UpdateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

ToQuery UpdateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

AWSRequest UpdateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

Generic UpdateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

Associated Types

type Rep UpdateCallAnalyticsCategory :: Type -> Type #

Read UpdateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

Show UpdateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

NFData UpdateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

Eq UpdateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

Hashable UpdateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

type AWSResponse UpdateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

type Rep UpdateCallAnalyticsCategory Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

type Rep UpdateCallAnalyticsCategory = D1 ('MetaData "UpdateCallAnalyticsCategory" "Amazonka.Transcribe.UpdateCallAnalyticsCategory" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "UpdateCallAnalyticsCategory'" 'PrefixI 'True) (S1 ('MetaSel ('Just "inputType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe InputType)) :*: (S1 ('MetaSel ('Just "categoryName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "rules") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Rule)))))

newUpdateCallAnalyticsCategory Source #

Create a value of UpdateCallAnalyticsCategory 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:

UpdateCallAnalyticsCategory, updateCallAnalyticsCategory_inputType - Choose whether you want to update a streaming or a batch Call Analytics category. The input type you specify must match the input type specified when the category was created. For example, if you created a category with the POST_CALL input type, you must use POST_CALL as the input type when updating this category.

UpdateCallAnalyticsCategory, updateCallAnalyticsCategory_categoryName - The name of the Call Analytics category you want to update. Category names are case sensitive.

UpdateCallAnalyticsCategory, updateCallAnalyticsCategory_rules - The rules used for the updated Call Analytics category. The rules you provide in this field replace the ones that are currently being used in the specified category.

data UpdateCallAnalyticsCategoryResponse Source #

Instances

Instances details
Generic UpdateCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

Read UpdateCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

Show UpdateCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

NFData UpdateCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

Eq UpdateCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

type Rep UpdateCallAnalyticsCategoryResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateCallAnalyticsCategory

type Rep UpdateCallAnalyticsCategoryResponse = D1 ('MetaData "UpdateCallAnalyticsCategoryResponse" "Amazonka.Transcribe.UpdateCallAnalyticsCategory" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "UpdateCallAnalyticsCategoryResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "categoryProperties") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CategoryProperties)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateCallAnalyticsCategoryResponse Source #

Create a value of UpdateCallAnalyticsCategoryResponse 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:categoryProperties:UpdateCallAnalyticsCategoryResponse', updateCallAnalyticsCategoryResponse_categoryProperties - Provides you with the properties of the Call Analytics category you specified in your UpdateCallAnalyticsCategory request.

$sel:httpStatus:UpdateCallAnalyticsCategoryResponse', updateCallAnalyticsCategoryResponse_httpStatus - The response's http status code.

UpdateMedicalVocabulary

data UpdateMedicalVocabulary Source #

See: newUpdateMedicalVocabulary smart constructor.

Instances

Instances details
ToJSON UpdateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

ToHeaders UpdateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

ToPath UpdateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

ToQuery UpdateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

AWSRequest UpdateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

Generic UpdateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

Associated Types

type Rep UpdateMedicalVocabulary :: Type -> Type #

Read UpdateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

Show UpdateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

NFData UpdateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

Methods

rnf :: UpdateMedicalVocabulary -> () #

Eq UpdateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

Hashable UpdateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

type AWSResponse UpdateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

type Rep UpdateMedicalVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

type Rep UpdateMedicalVocabulary = D1 ('MetaData "UpdateMedicalVocabulary" "Amazonka.Transcribe.UpdateMedicalVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "UpdateMedicalVocabulary'" 'PrefixI 'True) (S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 LanguageCode) :*: S1 ('MetaSel ('Just "vocabularyFileUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newUpdateMedicalVocabulary Source #

Create a value of UpdateMedicalVocabulary 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:

UpdateMedicalVocabulary, updateMedicalVocabulary_vocabularyName - The name of the custom medical vocabulary you want to update. Custom medical vocabulary names are case sensitive.

UpdateMedicalVocabulary, updateMedicalVocabulary_languageCode - The language code that represents the language of the entries in the custom vocabulary you want to update. US English (en-US) is the only language supported with Amazon Transcribe Medical.

$sel:vocabularyFileUri:UpdateMedicalVocabulary', updateMedicalVocabulary_vocabularyFileUri - The Amazon S3 location of the text file that contains your custom medical vocabulary. The URI must be located in the same Amazon Web Services Region as the resource you're calling.

Here's an example URI path: s3://DOC-EXAMPLE-BUCKET/my-vocab-file.txt

data UpdateMedicalVocabularyResponse Source #

See: newUpdateMedicalVocabularyResponse smart constructor.

Instances

Instances details
Generic UpdateMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

Associated Types

type Rep UpdateMedicalVocabularyResponse :: Type -> Type #

Read UpdateMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

Show UpdateMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

NFData UpdateMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

Eq UpdateMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

type Rep UpdateMedicalVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateMedicalVocabulary

type Rep UpdateMedicalVocabularyResponse = D1 ('MetaData "UpdateMedicalVocabularyResponse" "Amazonka.Transcribe.UpdateMedicalVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "UpdateMedicalVocabularyResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode)) :*: S1 ('MetaSel ('Just "lastModifiedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "vocabularyState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VocabularyState)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))

newUpdateMedicalVocabularyResponse Source #

Create a value of UpdateMedicalVocabularyResponse 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:

UpdateMedicalVocabulary, updateMedicalVocabularyResponse_languageCode - The language code you selected for your custom medical vocabulary. US English (en-US) is the only language supported with Amazon Transcribe Medical.

UpdateMedicalVocabularyResponse, updateMedicalVocabularyResponse_lastModifiedTime - The date and time the specified custom medical vocabulary was last updated.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents 12:32 PM UTC-7 on May 4, 2022.

UpdateMedicalVocabulary, updateMedicalVocabularyResponse_vocabularyName - The name of the updated custom medical vocabulary.

UpdateMedicalVocabularyResponse, updateMedicalVocabularyResponse_vocabularyState - The processing state of your custom medical vocabulary. If the state is READY, you can use the custom vocabulary in a StartMedicalTranscriptionJob request.

$sel:httpStatus:UpdateMedicalVocabularyResponse', updateMedicalVocabularyResponse_httpStatus - The response's http status code.

UpdateVocabulary

data UpdateVocabulary Source #

See: newUpdateVocabulary smart constructor.

Instances

Instances details
ToJSON UpdateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

ToHeaders UpdateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

ToPath UpdateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

ToQuery UpdateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

AWSRequest UpdateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

Associated Types

type AWSResponse UpdateVocabulary #

Generic UpdateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

Associated Types

type Rep UpdateVocabulary :: Type -> Type #

Read UpdateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

Show UpdateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

NFData UpdateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

Methods

rnf :: UpdateVocabulary -> () #

Eq UpdateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

Hashable UpdateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

type AWSResponse UpdateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

type Rep UpdateVocabulary Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

type Rep UpdateVocabulary = D1 ('MetaData "UpdateVocabulary" "Amazonka.Transcribe.UpdateVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "UpdateVocabulary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "phrases") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "vocabularyFileUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 LanguageCode))))

newUpdateVocabulary Source #

Create a value of UpdateVocabulary 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:phrases:UpdateVocabulary', updateVocabulary_phrases - Use this parameter if you want to update your custom vocabulary by including all desired terms, as comma-separated values, within your request. The other option for updating your custom vocabulary is to save your entries in a text file and upload them to an Amazon S3 bucket, then specify the location of your file using the VocabularyFileUri parameter.

Note that if you include Phrases in your request, you cannot use VocabularyFileUri; you must choose one or the other.

Each language has a character set that contains all allowed characters for that specific language. If you use unsupported characters, your custom vocabulary filter request fails. Refer to Character Sets for Custom Vocabularies to get the character set for your language.

$sel:vocabularyFileUri:UpdateVocabulary', updateVocabulary_vocabularyFileUri - The Amazon S3 location of the text file that contains your custom vocabulary. The URI must be located in the same Amazon Web Services Region as the resource you're calling.

Here's an example URI path: s3://DOC-EXAMPLE-BUCKET/my-vocab-file.txt

Note that if you include VocabularyFileUri in your request, you cannot use the Phrases flag; you must choose one or the other.

UpdateVocabulary, updateVocabulary_vocabularyName - The name of the custom vocabulary you want to update. Custom vocabulary names are case sensitive.

UpdateVocabulary, updateVocabulary_languageCode - The language code that represents the language of the entries in the custom vocabulary you want to update. Each custom vocabulary must contain terms in only one language.

A custom vocabulary can only be used to transcribe files in the same language as the custom vocabulary. For example, if you create a custom vocabulary using US English (en-US), you can only apply this custom vocabulary to files that contain English audio.

For a list of supported languages and their associated language codes, refer to the Supported languages table.

data UpdateVocabularyResponse Source #

See: newUpdateVocabularyResponse smart constructor.

Instances

Instances details
Generic UpdateVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

Associated Types

type Rep UpdateVocabularyResponse :: Type -> Type #

Read UpdateVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

Show UpdateVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

NFData UpdateVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

Eq UpdateVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

type Rep UpdateVocabularyResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabulary

type Rep UpdateVocabularyResponse = D1 ('MetaData "UpdateVocabularyResponse" "Amazonka.Transcribe.UpdateVocabulary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "UpdateVocabularyResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode)) :*: S1 ('MetaSel ('Just "lastModifiedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "vocabularyState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VocabularyState)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))

newUpdateVocabularyResponse Source #

Create a value of UpdateVocabularyResponse 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:

UpdateVocabulary, updateVocabularyResponse_languageCode - The language code you selected for your custom vocabulary.

UpdateVocabularyResponse, updateVocabularyResponse_lastModifiedTime - The date and time the specified custom vocabulary was last updated.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents 12:32 PM UTC-7 on May 4, 2022.

UpdateVocabulary, updateVocabularyResponse_vocabularyName - The name of the updated custom vocabulary.

UpdateVocabularyResponse, updateVocabularyResponse_vocabularyState - The processing state of your custom vocabulary. If the state is READY, you can use the custom vocabulary in a StartTranscriptionJob request.

$sel:httpStatus:UpdateVocabularyResponse', updateVocabularyResponse_httpStatus - The response's http status code.

UpdateVocabularyFilter

data UpdateVocabularyFilter Source #

See: newUpdateVocabularyFilter smart constructor.

Instances

Instances details
ToJSON UpdateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

ToHeaders UpdateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

ToPath UpdateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

ToQuery UpdateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

AWSRequest UpdateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

Associated Types

type AWSResponse UpdateVocabularyFilter #

Generic UpdateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

Associated Types

type Rep UpdateVocabularyFilter :: Type -> Type #

Read UpdateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

Show UpdateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

NFData UpdateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

Methods

rnf :: UpdateVocabularyFilter -> () #

Eq UpdateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

Hashable UpdateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

type AWSResponse UpdateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

type Rep UpdateVocabularyFilter Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

type Rep UpdateVocabularyFilter = D1 ('MetaData "UpdateVocabularyFilter" "Amazonka.Transcribe.UpdateVocabularyFilter" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "UpdateVocabularyFilter'" 'PrefixI 'True) (S1 ('MetaSel ('Just "vocabularyFilterFileUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "words") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text))) :*: S1 ('MetaSel ('Just "vocabularyFilterName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newUpdateVocabularyFilter Source #

Create a value of UpdateVocabularyFilter 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:vocabularyFilterFileUri:UpdateVocabularyFilter', updateVocabularyFilter_vocabularyFilterFileUri - The Amazon S3 location of the text file that contains your custom vocabulary filter terms. The URI must be located in the same Amazon Web Services Region as the resource you're calling.

Here's an example URI path: s3://DOC-EXAMPLE-BUCKET/my-vocab-filter-file.txt

Note that if you include VocabularyFilterFileUri in your request, you cannot use Words; you must choose one or the other.

$sel:words:UpdateVocabularyFilter', updateVocabularyFilter_words - Use this parameter if you want to update your custom vocabulary filter by including all desired terms, as comma-separated values, within your request. The other option for updating your vocabulary filter is to save your entries in a text file and upload them to an Amazon S3 bucket, then specify the location of your file using the VocabularyFilterFileUri parameter.

Note that if you include Words in your request, you cannot use VocabularyFilterFileUri; you must choose one or the other.

Each language has a character set that contains all allowed characters for that specific language. If you use unsupported characters, your custom vocabulary filter request fails. Refer to Character Sets for Custom Vocabularies to get the character set for your language.

UpdateVocabularyFilter, updateVocabularyFilter_vocabularyFilterName - The name of the custom vocabulary filter you want to update. Custom vocabulary filter names are case sensitive.

data UpdateVocabularyFilterResponse Source #

See: newUpdateVocabularyFilterResponse smart constructor.

Instances

Instances details
Generic UpdateVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

Associated Types

type Rep UpdateVocabularyFilterResponse :: Type -> Type #

Read UpdateVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

Show UpdateVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

NFData UpdateVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

Eq UpdateVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

type Rep UpdateVocabularyFilterResponse Source # 
Instance details

Defined in Amazonka.Transcribe.UpdateVocabularyFilter

type Rep UpdateVocabularyFilterResponse = D1 ('MetaData "UpdateVocabularyFilterResponse" "Amazonka.Transcribe.UpdateVocabularyFilter" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "UpdateVocabularyFilterResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode)) :*: S1 ('MetaSel ('Just "lastModifiedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "vocabularyFilterName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newUpdateVocabularyFilterResponse Source #

Create a value of UpdateVocabularyFilterResponse 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:

UpdateVocabularyFilterResponse, updateVocabularyFilterResponse_languageCode - The language code you selected for your custom vocabulary filter.

UpdateVocabularyFilterResponse, updateVocabularyFilterResponse_lastModifiedTime - The date and time the specified custom vocabulary filter was last updated.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents 12:32 PM UTC-7 on May 4, 2022.

UpdateVocabularyFilter, updateVocabularyFilterResponse_vocabularyFilterName - The name of the updated custom vocabulary filter.

$sel:httpStatus:UpdateVocabularyFilterResponse', updateVocabularyFilterResponse_httpStatus - The response's http status code.

Types

BaseModelName

newtype BaseModelName Source #

Constructors

BaseModelName' 

Instances

Instances details
FromJSON BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

FromJSONKey BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

ToJSON BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

ToJSONKey BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

ToByteString BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

ToHeader BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

ToLog BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

ToQuery BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

FromText BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

ToText BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

Methods

toText :: BaseModelName -> Text #

FromXML BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

ToXML BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

Methods

toXML :: BaseModelName -> XML #

Generic BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

Associated Types

type Rep BaseModelName :: Type -> Type #

Read BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

Show BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

NFData BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

Methods

rnf :: BaseModelName -> () #

Eq BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

Ord BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

Hashable BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

type Rep BaseModelName Source # 
Instance details

Defined in Amazonka.Transcribe.Types.BaseModelName

type Rep BaseModelName = D1 ('MetaData "BaseModelName" "Amazonka.Transcribe.Types.BaseModelName" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "BaseModelName'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromBaseModelName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

CLMLanguageCode

newtype CLMLanguageCode Source #

Constructors

CLMLanguageCode' 

Instances

Instances details
FromJSON CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

FromJSONKey CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

ToJSON CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

ToJSONKey CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

ToByteString CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

ToHeader CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

ToLog CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

ToQuery CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

FromText CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

ToText CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

FromXML CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

ToXML CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

Methods

toXML :: CLMLanguageCode -> XML #

Generic CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

Associated Types

type Rep CLMLanguageCode :: Type -> Type #

Read CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

Show CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

NFData CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

Methods

rnf :: CLMLanguageCode -> () #

Eq CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

Ord CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

Hashable CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

type Rep CLMLanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CLMLanguageCode

type Rep CLMLanguageCode = D1 ('MetaData "CLMLanguageCode" "Amazonka.Transcribe.Types.CLMLanguageCode" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "CLMLanguageCode'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromCLMLanguageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

CallAnalyticsJobStatus

newtype CallAnalyticsJobStatus Source #

Instances

Instances details
FromJSON CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

FromJSONKey CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

ToJSON CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

ToJSONKey CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

ToByteString CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

ToHeader CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

ToLog CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

ToQuery CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

FromText CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

ToText CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

FromXML CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

ToXML CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

Generic CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

Associated Types

type Rep CallAnalyticsJobStatus :: Type -> Type #

Read CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

Show CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

NFData CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

Methods

rnf :: CallAnalyticsJobStatus -> () #

Eq CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

Ord CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

Hashable CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

type Rep CallAnalyticsJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobStatus

type Rep CallAnalyticsJobStatus = D1 ('MetaData "CallAnalyticsJobStatus" "Amazonka.Transcribe.Types.CallAnalyticsJobStatus" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "CallAnalyticsJobStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromCallAnalyticsJobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

InputType

newtype InputType Source #

Constructors

InputType' 

Fields

Bundled Patterns

pattern InputType_POST_CALL :: InputType 
pattern InputType_REAL_TIME :: InputType 

Instances

Instances details
FromJSON InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

FromJSONKey InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

ToJSON InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

ToJSONKey InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

ToByteString InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

Methods

toBS :: InputType -> ByteString #

ToHeader InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

ToLog InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

ToQuery InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

FromText InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

ToText InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

Methods

toText :: InputType -> Text #

FromXML InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

ToXML InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

Methods

toXML :: InputType -> XML #

Generic InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

Associated Types

type Rep InputType :: Type -> Type #

Read InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

Show InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

NFData InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

Methods

rnf :: InputType -> () #

Eq InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

Ord InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

Hashable InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

type Rep InputType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputType

type Rep InputType = D1 ('MetaData "InputType" "Amazonka.Transcribe.Types.InputType" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "InputType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromInputType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

LanguageCode

newtype LanguageCode Source #

Constructors

LanguageCode' 

Bundled Patterns

pattern LanguageCode_Af_ZA :: LanguageCode 
pattern LanguageCode_Ar_AE :: LanguageCode 
pattern LanguageCode_Ar_SA :: LanguageCode 
pattern LanguageCode_Da_DK :: LanguageCode 
pattern LanguageCode_De_CH :: LanguageCode 
pattern LanguageCode_De_DE :: LanguageCode 
pattern LanguageCode_En_AB :: LanguageCode 
pattern LanguageCode_En_AU :: LanguageCode 
pattern LanguageCode_En_GB :: LanguageCode 
pattern LanguageCode_En_IE :: LanguageCode 
pattern LanguageCode_En_IN :: LanguageCode 
pattern LanguageCode_En_NZ :: LanguageCode 
pattern LanguageCode_En_US :: LanguageCode 
pattern LanguageCode_En_WL :: LanguageCode 
pattern LanguageCode_En_ZA :: LanguageCode 
pattern LanguageCode_Es_ES :: LanguageCode 
pattern LanguageCode_Es_US :: LanguageCode 
pattern LanguageCode_Fa_IR :: LanguageCode 
pattern LanguageCode_Fr_CA :: LanguageCode 
pattern LanguageCode_Fr_FR :: LanguageCode 
pattern LanguageCode_He_IL :: LanguageCode 
pattern LanguageCode_Hi_IN :: LanguageCode 
pattern LanguageCode_Id_ID :: LanguageCode 
pattern LanguageCode_It_IT :: LanguageCode 
pattern LanguageCode_Ja_JP :: LanguageCode 
pattern LanguageCode_Ko_KR :: LanguageCode 
pattern LanguageCode_Ms_MY :: LanguageCode 
pattern LanguageCode_Nl_NL :: LanguageCode 
pattern LanguageCode_Pt_BR :: LanguageCode 
pattern LanguageCode_Pt_PT :: LanguageCode 
pattern LanguageCode_Ru_RU :: LanguageCode 
pattern LanguageCode_Sv_SE :: LanguageCode 
pattern LanguageCode_Ta_IN :: LanguageCode 
pattern LanguageCode_Te_IN :: LanguageCode 
pattern LanguageCode_Th_TH :: LanguageCode 
pattern LanguageCode_Tr_TR :: LanguageCode 
pattern LanguageCode_Vi_VN :: LanguageCode 
pattern LanguageCode_Zh_CN :: LanguageCode 
pattern LanguageCode_Zh_TW :: LanguageCode 

Instances

Instances details
FromJSON LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

FromJSONKey LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

ToJSON LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

ToJSONKey LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

ToByteString LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

ToHeader LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

ToLog LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

ToQuery LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

FromText LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

ToText LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

Methods

toText :: LanguageCode -> Text #

FromXML LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

ToXML LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

Methods

toXML :: LanguageCode -> XML #

Generic LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

Associated Types

type Rep LanguageCode :: Type -> Type #

Read LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

Show LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

NFData LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

Methods

rnf :: LanguageCode -> () #

Eq LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

Ord LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

Hashable LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

type Rep LanguageCode Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCode

type Rep LanguageCode = D1 ('MetaData "LanguageCode" "Amazonka.Transcribe.Types.LanguageCode" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "LanguageCode'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromLanguageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

MediaFormat

newtype MediaFormat Source #

Constructors

MediaFormat' 

Instances

Instances details
FromJSON MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

FromJSONKey MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

ToJSON MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

ToJSONKey MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

ToByteString MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

ToHeader MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

ToLog MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

ToQuery MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

FromText MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

ToText MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

Methods

toText :: MediaFormat -> Text #

FromXML MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

ToXML MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

Methods

toXML :: MediaFormat -> XML #

Generic MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

Associated Types

type Rep MediaFormat :: Type -> Type #

Read MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

Show MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

NFData MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

Methods

rnf :: MediaFormat -> () #

Eq MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

Ord MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

Hashable MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

type Rep MediaFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MediaFormat

type Rep MediaFormat = D1 ('MetaData "MediaFormat" "Amazonka.Transcribe.Types.MediaFormat" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "MediaFormat'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromMediaFormat") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

MedicalContentIdentificationType

newtype MedicalContentIdentificationType Source #

Instances

Instances details
FromJSON MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

FromJSONKey MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

ToJSON MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

ToJSONKey MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

ToByteString MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

ToHeader MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

ToLog MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

ToQuery MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

FromText MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

ToText MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

FromXML MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

ToXML MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

Generic MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

Associated Types

type Rep MedicalContentIdentificationType :: Type -> Type #

Read MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

Show MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

NFData MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

Eq MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

Ord MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

Hashable MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

type Rep MedicalContentIdentificationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalContentIdentificationType

type Rep MedicalContentIdentificationType = D1 ('MetaData "MedicalContentIdentificationType" "Amazonka.Transcribe.Types.MedicalContentIdentificationType" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "MedicalContentIdentificationType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromMedicalContentIdentificationType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ModelStatus

newtype ModelStatus Source #

Constructors

ModelStatus' 

Instances

Instances details
FromJSON ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

FromJSONKey ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

ToJSON ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

ToJSONKey ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

ToByteString ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

ToHeader ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

ToLog ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

ToQuery ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

FromText ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

ToText ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

Methods

toText :: ModelStatus -> Text #

FromXML ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

ToXML ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

Methods

toXML :: ModelStatus -> XML #

Generic ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

Associated Types

type Rep ModelStatus :: Type -> Type #

Read ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

Show ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

NFData ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

Methods

rnf :: ModelStatus -> () #

Eq ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

Ord ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

Hashable ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

type Rep ModelStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelStatus

type Rep ModelStatus = D1 ('MetaData "ModelStatus" "Amazonka.Transcribe.Types.ModelStatus" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "ModelStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromModelStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

OutputLocationType

newtype OutputLocationType Source #

Instances

Instances details
FromJSON OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

FromJSONKey OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

ToJSON OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

ToJSONKey OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

ToByteString OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

ToHeader OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

ToLog OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

ToQuery OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

FromText OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

ToText OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

FromXML OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

ToXML OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

Generic OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

Associated Types

type Rep OutputLocationType :: Type -> Type #

Read OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

Show OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

NFData OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

Methods

rnf :: OutputLocationType -> () #

Eq OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

Ord OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

Hashable OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

type Rep OutputLocationType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.OutputLocationType

type Rep OutputLocationType = D1 ('MetaData "OutputLocationType" "Amazonka.Transcribe.Types.OutputLocationType" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "OutputLocationType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromOutputLocationType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ParticipantRole

newtype ParticipantRole Source #

Constructors

ParticipantRole' 

Instances

Instances details
FromJSON ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

FromJSONKey ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

ToJSON ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

ToJSONKey ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

ToByteString ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

ToHeader ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

ToLog ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

ToQuery ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

FromText ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

ToText ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

FromXML ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

ToXML ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

Methods

toXML :: ParticipantRole -> XML #

Generic ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

Associated Types

type Rep ParticipantRole :: Type -> Type #

Read ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

Show ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

NFData ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

Methods

rnf :: ParticipantRole -> () #

Eq ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

Ord ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

Hashable ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

type Rep ParticipantRole Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ParticipantRole

type Rep ParticipantRole = D1 ('MetaData "ParticipantRole" "Amazonka.Transcribe.Types.ParticipantRole" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "ParticipantRole'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromParticipantRole") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

PiiEntityType

newtype PiiEntityType Source #

Constructors

PiiEntityType' 

Instances

Instances details
FromJSON PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

FromJSONKey PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

ToJSON PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

ToJSONKey PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

ToByteString PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

ToHeader PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

ToLog PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

ToQuery PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

FromText PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

ToText PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

Methods

toText :: PiiEntityType -> Text #

FromXML PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

ToXML PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

Methods

toXML :: PiiEntityType -> XML #

Generic PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

Associated Types

type Rep PiiEntityType :: Type -> Type #

Read PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

Show PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

NFData PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

Methods

rnf :: PiiEntityType -> () #

Eq PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

Ord PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

Hashable PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

type Rep PiiEntityType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.PiiEntityType

type Rep PiiEntityType = D1 ('MetaData "PiiEntityType" "Amazonka.Transcribe.Types.PiiEntityType" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "PiiEntityType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromPiiEntityType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

RedactionOutput

newtype RedactionOutput Source #

Constructors

RedactionOutput' 

Instances

Instances details
FromJSON RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

FromJSONKey RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

ToJSON RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

ToJSONKey RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

ToByteString RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

ToHeader RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

ToLog RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

ToQuery RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

FromText RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

ToText RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

FromXML RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

ToXML RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

Methods

toXML :: RedactionOutput -> XML #

Generic RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

Associated Types

type Rep RedactionOutput :: Type -> Type #

Read RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

Show RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

NFData RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

Methods

rnf :: RedactionOutput -> () #

Eq RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

Ord RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

Hashable RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

type Rep RedactionOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionOutput

type Rep RedactionOutput = D1 ('MetaData "RedactionOutput" "Amazonka.Transcribe.Types.RedactionOutput" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "RedactionOutput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromRedactionOutput") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

RedactionType

newtype RedactionType Source #

Constructors

RedactionType' 

Bundled Patterns

pattern RedactionType_PII :: RedactionType 

Instances

Instances details
FromJSON RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

FromJSONKey RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

ToJSON RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

ToJSONKey RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

ToByteString RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

ToHeader RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

ToLog RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

ToQuery RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

FromText RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

ToText RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

Methods

toText :: RedactionType -> Text #

FromXML RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

ToXML RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

Methods

toXML :: RedactionType -> XML #

Generic RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

Associated Types

type Rep RedactionType :: Type -> Type #

Read RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

Show RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

NFData RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

Methods

rnf :: RedactionType -> () #

Eq RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

Ord RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

Hashable RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

type Rep RedactionType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RedactionType

type Rep RedactionType = D1 ('MetaData "RedactionType" "Amazonka.Transcribe.Types.RedactionType" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "RedactionType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromRedactionType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

SentimentValue

newtype SentimentValue Source #

Constructors

SentimentValue' 

Instances

Instances details
FromJSON SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

FromJSONKey SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

ToJSON SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

ToJSONKey SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

ToByteString SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

ToHeader SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

ToLog SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

ToQuery SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

FromText SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

ToText SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

FromXML SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

ToXML SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

Methods

toXML :: SentimentValue -> XML #

Generic SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

Associated Types

type Rep SentimentValue :: Type -> Type #

Read SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

Show SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

NFData SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

Methods

rnf :: SentimentValue -> () #

Eq SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

Ord SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

Hashable SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

type Rep SentimentValue Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentValue

type Rep SentimentValue = D1 ('MetaData "SentimentValue" "Amazonka.Transcribe.Types.SentimentValue" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "SentimentValue'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromSentimentValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

Specialty

newtype Specialty Source #

Constructors

Specialty' 

Fields

Bundled Patterns

pattern Specialty_PRIMARYCARE :: Specialty 

Instances

Instances details
FromJSON Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

FromJSONKey Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

ToJSON Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

ToJSONKey Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

ToByteString Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

Methods

toBS :: Specialty -> ByteString #

ToHeader Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

ToLog Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

ToQuery Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

FromText Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

ToText Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

Methods

toText :: Specialty -> Text #

FromXML Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

ToXML Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

Methods

toXML :: Specialty -> XML #

Generic Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

Associated Types

type Rep Specialty :: Type -> Type #

Read Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

Show Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

NFData Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

Methods

rnf :: Specialty -> () #

Eq Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

Ord Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

Hashable Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

type Rep Specialty Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Specialty

type Rep Specialty = D1 ('MetaData "Specialty" "Amazonka.Transcribe.Types.Specialty" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "Specialty'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromSpecialty") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

SubtitleFormat

newtype SubtitleFormat Source #

Constructors

SubtitleFormat' 

Bundled Patterns

pattern SubtitleFormat_Srt :: SubtitleFormat 
pattern SubtitleFormat_Vtt :: SubtitleFormat 

Instances

Instances details
FromJSON SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

FromJSONKey SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

ToJSON SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

ToJSONKey SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

ToByteString SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

ToHeader SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

ToLog SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

ToQuery SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

FromText SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

ToText SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

FromXML SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

ToXML SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

Methods

toXML :: SubtitleFormat -> XML #

Generic SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

Associated Types

type Rep SubtitleFormat :: Type -> Type #

Read SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

Show SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

NFData SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

Methods

rnf :: SubtitleFormat -> () #

Eq SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

Ord SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

Hashable SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

type Rep SubtitleFormat Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitleFormat

type Rep SubtitleFormat = D1 ('MetaData "SubtitleFormat" "Amazonka.Transcribe.Types.SubtitleFormat" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "SubtitleFormat'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromSubtitleFormat") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

TranscriptFilterType

newtype TranscriptFilterType Source #

Instances

Instances details
FromJSON TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

FromJSONKey TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

ToJSON TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

ToJSONKey TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

ToByteString TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

ToHeader TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

ToLog TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

ToQuery TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

FromText TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

ToText TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

FromXML TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

ToXML TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

Generic TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

Associated Types

type Rep TranscriptFilterType :: Type -> Type #

Read TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

Show TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

NFData TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

Methods

rnf :: TranscriptFilterType -> () #

Eq TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

Ord TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

Hashable TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

type Rep TranscriptFilterType Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilterType

type Rep TranscriptFilterType = D1 ('MetaData "TranscriptFilterType" "Amazonka.Transcribe.Types.TranscriptFilterType" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "TranscriptFilterType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromTranscriptFilterType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

TranscriptionJobStatus

newtype TranscriptionJobStatus Source #

Instances

Instances details
FromJSON TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

FromJSONKey TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

ToJSON TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

ToJSONKey TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

ToByteString TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

ToHeader TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

ToLog TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

ToQuery TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

FromText TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

ToText TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

FromXML TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

ToXML TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

Generic TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

Associated Types

type Rep TranscriptionJobStatus :: Type -> Type #

Read TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

Show TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

NFData TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

Methods

rnf :: TranscriptionJobStatus -> () #

Eq TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

Ord TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

Hashable TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

type Rep TranscriptionJobStatus Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobStatus

type Rep TranscriptionJobStatus = D1 ('MetaData "TranscriptionJobStatus" "Amazonka.Transcribe.Types.TranscriptionJobStatus" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "TranscriptionJobStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromTranscriptionJobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

Type

newtype Type Source #

Constructors

Type' 

Fields

Bundled Patterns

pattern Type_CONVERSATION :: Type 
pattern Type_DICTATION :: Type 

Instances

Instances details
FromJSON Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

FromJSONKey Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

ToJSON Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

ToJSONKey Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

ToByteString Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

Methods

toBS :: Type -> ByteString #

ToHeader Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

Methods

toHeader :: HeaderName -> Type -> [Header] #

ToLog Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

ToQuery Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

Methods

toQuery :: Type -> QueryString #

FromText Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

ToText Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

Methods

toText :: Type -> Text #

FromXML Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

Methods

parseXML :: [Node] -> Either String Type #

ToXML Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

Methods

toXML :: Type -> XML #

Generic Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

Associated Types

type Rep Type :: Type -> Type #

Methods

from :: Type -> Rep Type x #

to :: Rep Type x -> Type #

Read Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

Show Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

Methods

showsPrec :: Int -> Type -> ShowS #

show :: Type -> String #

showList :: [Type] -> ShowS #

NFData Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

Methods

rnf :: Type -> () #

Eq Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

Methods

(==) :: Type -> Type -> Bool #

(/=) :: Type -> Type -> Bool #

Ord Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

Methods

compare :: Type -> Type -> Ordering #

(<) :: Type -> Type -> Bool #

(<=) :: Type -> Type -> Bool #

(>) :: Type -> Type -> Bool #

(>=) :: Type -> Type -> Bool #

max :: Type -> Type -> Type #

min :: Type -> Type -> Type #

Hashable Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

Methods

hashWithSalt :: Int -> Type -> Int #

hash :: Type -> Int #

type Rep Type Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Type

type Rep Type = D1 ('MetaData "Type" "Amazonka.Transcribe.Types.Type" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "Type'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

VocabularyFilterMethod

newtype VocabularyFilterMethod Source #

Instances

Instances details
FromJSON VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

FromJSONKey VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

ToJSON VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

ToJSONKey VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

ToByteString VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

ToHeader VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

ToLog VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

ToQuery VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

FromText VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

ToText VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

FromXML VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

ToXML VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

Generic VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

Associated Types

type Rep VocabularyFilterMethod :: Type -> Type #

Read VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

Show VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

NFData VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

Methods

rnf :: VocabularyFilterMethod -> () #

Eq VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

Ord VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

Hashable VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

type Rep VocabularyFilterMethod Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterMethod

type Rep VocabularyFilterMethod = D1 ('MetaData "VocabularyFilterMethod" "Amazonka.Transcribe.Types.VocabularyFilterMethod" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "VocabularyFilterMethod'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromVocabularyFilterMethod") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

VocabularyState

newtype VocabularyState Source #

Constructors

VocabularyState' 

Instances

Instances details
FromJSON VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

FromJSONKey VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

ToJSON VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

ToJSONKey VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

ToByteString VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

ToHeader VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

ToLog VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

ToQuery VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

FromText VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

ToText VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

FromXML VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

ToXML VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

Methods

toXML :: VocabularyState -> XML #

Generic VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

Associated Types

type Rep VocabularyState :: Type -> Type #

Read VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

Show VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

NFData VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

Methods

rnf :: VocabularyState -> () #

Eq VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

Ord VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

Hashable VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

type Rep VocabularyState Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyState

type Rep VocabularyState = D1 ('MetaData "VocabularyState" "Amazonka.Transcribe.Types.VocabularyState" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'True) (C1 ('MetaCons "VocabularyState'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromVocabularyState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

AbsoluteTimeRange

data AbsoluteTimeRange Source #

A time range, in milliseconds, between two points in your media file.

You can use StartTime and EndTime to search a custom segment. For example, setting StartTime to 10000 and EndTime to 50000 only searches for your specified criteria in the audio contained between the 10,000 millisecond mark and the 50,000 millisecond mark of your media file. You must use StartTime and EndTime as a set; that is, if you include one, you must include both.

You can use also First to search from the start of the audio until the time that you specify, or Last to search from the time that you specify until the end of the audio. For example, setting First to 50000 only searches for your specified criteria in the audio contained between the start of the media file to the 50,000 millisecond mark. You can use First and Last independently of each other.

If you prefer to use percentage instead of milliseconds, see .

See: newAbsoluteTimeRange smart constructor.

Instances

Instances details
FromJSON AbsoluteTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.AbsoluteTimeRange

ToJSON AbsoluteTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.AbsoluteTimeRange

Generic AbsoluteTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.AbsoluteTimeRange

Associated Types

type Rep AbsoluteTimeRange :: Type -> Type #

Read AbsoluteTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.AbsoluteTimeRange

Show AbsoluteTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.AbsoluteTimeRange

NFData AbsoluteTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.AbsoluteTimeRange

Methods

rnf :: AbsoluteTimeRange -> () #

Eq AbsoluteTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.AbsoluteTimeRange

Hashable AbsoluteTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.AbsoluteTimeRange

type Rep AbsoluteTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.AbsoluteTimeRange

type Rep AbsoluteTimeRange = D1 ('MetaData "AbsoluteTimeRange" "Amazonka.Transcribe.Types.AbsoluteTimeRange" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "AbsoluteTimeRange'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "endTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "first") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "last") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "startTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))

newAbsoluteTimeRange :: AbsoluteTimeRange Source #

Create a value of AbsoluteTimeRange 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:endTime:AbsoluteTimeRange', absoluteTimeRange_endTime - The time, in milliseconds, when Amazon Transcribe stops searching for the specified criteria in your audio. If you include EndTime in your request, you must also include StartTime.

$sel:first:AbsoluteTimeRange', absoluteTimeRange_first - The time, in milliseconds, from the start of your media file until the specified value. Amazon Transcribe searches for your specified criteria in this time segment.

$sel:last:AbsoluteTimeRange', absoluteTimeRange_last - The time, in milliseconds, from the specified value until the end of your media file. Amazon Transcribe searches for your specified criteria in this time segment.

$sel:startTime:AbsoluteTimeRange', absoluteTimeRange_startTime - The time, in milliseconds, when Amazon Transcribe starts searching for the specified criteria in your audio. If you include StartTime in your request, you must also include EndTime.

CallAnalyticsJob

data CallAnalyticsJob Source #

Provides detailed information about a Call Analytics job.

To view the job's status, refer to CallAnalyticsJobStatus. If the status is COMPLETED, the job is finished. You can find your completed transcript at the URI specified in TranscriptFileUri. If the status is FAILED, FailureReason provides details on why your transcription job failed.

If you enabled personally identifiable information (PII) redaction, the redacted transcript appears at the location specified in RedactedTranscriptFileUri.

If you chose to redact the audio in your media file, you can find your redacted media file at the location specified in the RedactedMediaFileUri field of your response.

See: newCallAnalyticsJob smart constructor.

Instances

Instances details
FromJSON CallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJob

Generic CallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJob

Associated Types

type Rep CallAnalyticsJob :: Type -> Type #

Read CallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJob

Show CallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJob

NFData CallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJob

Methods

rnf :: CallAnalyticsJob -> () #

Eq CallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJob

Hashable CallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJob

type Rep CallAnalyticsJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJob

type Rep CallAnalyticsJob = D1 ('MetaData "CallAnalyticsJob" "Amazonka.Transcribe.Types.CallAnalyticsJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "CallAnalyticsJob'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "callAnalyticsJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "callAnalyticsJobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CallAnalyticsJobStatus)) :*: S1 ('MetaSel ('Just "channelDefinitions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty ChannelDefinition))))) :*: ((S1 ('MetaSel ('Just "completionTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "creationTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "dataAccessRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "failureReason") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: (((S1 ('MetaSel ('Just "identifiedLanguageScore") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode))) :*: (S1 ('MetaSel ('Just "media") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Media)) :*: S1 ('MetaSel ('Just "mediaFormat") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe MediaFormat)))) :*: ((S1 ('MetaSel ('Just "mediaSampleRateHertz") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "settings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CallAnalyticsJobSettings))) :*: (S1 ('MetaSel ('Just "startTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "transcript") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Transcript)))))))

newCallAnalyticsJob :: CallAnalyticsJob Source #

Create a value of CallAnalyticsJob 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:callAnalyticsJobName:CallAnalyticsJob', callAnalyticsJob_callAnalyticsJobName - The name of the Call Analytics job. Job names are case sensitive and must be unique within an Amazon Web Services account.

$sel:callAnalyticsJobStatus:CallAnalyticsJob', callAnalyticsJob_callAnalyticsJobStatus - Provides the status of the specified Call Analytics job.

If the status is COMPLETED, the job is finished and you can find the results at the location specified in TranscriptFileUri (or RedactedTranscriptFileUri, if you requested transcript redaction). If the status is FAILED, FailureReason provides details on why your transcription job failed.

$sel:channelDefinitions:CallAnalyticsJob', callAnalyticsJob_channelDefinitions - Indicates which speaker is on which channel.

$sel:completionTime:CallAnalyticsJob', callAnalyticsJob_completionTime - The date and time the specified Call Analytics job finished processing.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:33:13.922000-07:00 represents a transcription job that started processing at 12:33 PM UTC-7 on May 4, 2022.

$sel:creationTime:CallAnalyticsJob', callAnalyticsJob_creationTime - The date and time the specified Call Analytics job request was made.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.

$sel:dataAccessRoleArn:CallAnalyticsJob', callAnalyticsJob_dataAccessRoleArn - The Amazon Resource Name (ARN) you included in your request.

$sel:failureReason:CallAnalyticsJob', callAnalyticsJob_failureReason - If CallAnalyticsJobStatus is FAILED, FailureReason contains information about why the Call Analytics job request failed.

The FailureReason field contains one of the following values:

  • Unsupported media format.

    The media format specified in MediaFormat isn't valid. Refer to MediaFormat for a list of supported formats.

  • The media format provided does not match the detected media format.

    The media format specified in MediaFormat doesn't match the format of the input file. Check the media format of your media file and correct the specified value.

  • Invalid sample rate for audio file.

    The sample rate specified in MediaSampleRateHertz isn't valid. The sample rate must be between 8,000 and 48,000 hertz.

  • The sample rate provided does not match the detected sample rate.

    The sample rate specified in MediaSampleRateHertz doesn't match the sample rate detected in your input media file. Check the sample rate of your media file and correct the specified value.

  • Invalid file size: file size too large.

    The size of your media file is larger than what Amazon Transcribe can process. For more information, refer to Guidelines and quotas.

  • Invalid number of channels: number of channels too large.

    Your audio contains more channels than Amazon Transcribe is able to process. For more information, refer to Guidelines and quotas.

$sel:identifiedLanguageScore:CallAnalyticsJob', callAnalyticsJob_identifiedLanguageScore - The confidence score associated with the language identified in your media file.

Confidence scores are values between 0 and 1; a larger value indicates a higher probability that the identified language correctly matches the language spoken in your media.

$sel:languageCode:CallAnalyticsJob', callAnalyticsJob_languageCode - The language code used to create your Call Analytics job. For a list of supported languages and their associated language codes, refer to the Supported languages table.

If you don't know the language spoken in your media file, you can omit this field and let Amazon Transcribe automatically identify the language of your media. To improve the accuracy of language identification, you can include several language codes and Amazon Transcribe chooses the closest match for your transcription.

$sel:media:CallAnalyticsJob', callAnalyticsJob_media - Provides the Amazon S3 location of the media file you used in your Call Analytics request.

$sel:mediaFormat:CallAnalyticsJob', callAnalyticsJob_mediaFormat - The format of the input media file.

$sel:mediaSampleRateHertz:CallAnalyticsJob', callAnalyticsJob_mediaSampleRateHertz - The sample rate, in hertz, of the audio track in your input media file.

$sel:settings:CallAnalyticsJob', callAnalyticsJob_settings - Provides information on any additional settings that were included in your request. Additional settings include content redaction and language identification settings.

$sel:startTime:CallAnalyticsJob', callAnalyticsJob_startTime - The date and time the specified Call Analytics job began processing.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.789000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.

$sel:transcript:CallAnalyticsJob', callAnalyticsJob_transcript - Undocumented member.

CallAnalyticsJobSettings

data CallAnalyticsJobSettings Source #

Provides additional optional settings for your request, including content redaction, automatic language identification; allows you to apply custom language models, custom vocabulary filters, and custom vocabularies.

See: newCallAnalyticsJobSettings smart constructor.

Instances

Instances details
FromJSON CallAnalyticsJobSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSettings

ToJSON CallAnalyticsJobSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSettings

Generic CallAnalyticsJobSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSettings

Associated Types

type Rep CallAnalyticsJobSettings :: Type -> Type #

Read CallAnalyticsJobSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSettings

Show CallAnalyticsJobSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSettings

NFData CallAnalyticsJobSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSettings

Eq CallAnalyticsJobSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSettings

Hashable CallAnalyticsJobSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSettings

type Rep CallAnalyticsJobSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSettings

type Rep CallAnalyticsJobSettings = D1 ('MetaData "CallAnalyticsJobSettings" "Amazonka.Transcribe.Types.CallAnalyticsJobSettings" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "CallAnalyticsJobSettings'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "contentRedaction") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ContentRedaction)) :*: (S1 ('MetaSel ('Just "languageIdSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap LanguageCode LanguageIdSettings))) :*: S1 ('MetaSel ('Just "languageModelName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "languageOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty LanguageCode))) :*: S1 ('MetaSel ('Just "vocabularyFilterMethod") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VocabularyFilterMethod))) :*: (S1 ('MetaSel ('Just "vocabularyFilterName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newCallAnalyticsJobSettings :: CallAnalyticsJobSettings Source #

Create a value of CallAnalyticsJobSettings 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:contentRedaction:CallAnalyticsJobSettings', callAnalyticsJobSettings_contentRedaction - Undocumented member.

$sel:languageIdSettings:CallAnalyticsJobSettings', callAnalyticsJobSettings_languageIdSettings - If using automatic language identification in your request and you want to apply a custom language model, a custom vocabulary, or a custom vocabulary filter, include LanguageIdSettings with the relevant sub-parameters (VocabularyName, LanguageModelName, and VocabularyFilterName).

LanguageIdSettings supports two to five language codes. Each language code you include can have an associated custom language model, custom vocabulary, and custom vocabulary filter. The language codes that you specify must match the languages of the associated custom language models, custom vocabularies, and custom vocabulary filters.

It's recommended that you include LanguageOptions when using LanguageIdSettings to ensure that the correct language dialect is identified. For example, if you specify a custom vocabulary that is in en-US but Amazon Transcribe determines that the language spoken in your media is en-AU, your custom vocabulary is not applied to your transcription. If you include LanguageOptions and include en-US as the only English language dialect, your custom vocabulary is applied to your transcription.

If you want to include a custom language model, custom vocabulary, or custom vocabulary filter with your request but do not want to use automatic language identification, use instead the parameter with the LanguageModelName, VocabularyName, or VocabularyFilterName sub-parameters.

For a list of languages supported with Call Analytics, refer to Supported languages and language-specific features.

CallAnalyticsJobSettings, callAnalyticsJobSettings_languageModelName - The name of the custom language model you want to use when processing your Call Analytics job. Note that custom language model names are case sensitive.

The language of the specified custom language model must match the language code that you specify in your transcription request. If the languages don't match, the custom language model isn't applied. There are no errors or warnings associated with a language mismatch.

$sel:languageOptions:CallAnalyticsJobSettings', callAnalyticsJobSettings_languageOptions - You can specify two or more language codes that represent the languages you think may be present in your media. Including more than five is not recommended. If you're unsure what languages are present, do not include this parameter.

Including language options can improve the accuracy of language identification.

For a list of languages supported with Call Analytics, refer to the Supported languages table.

To transcribe speech in Modern Standard Arabic (ar-SA), your media file must be encoded at a sample rate of 16,000 Hz or higher.

$sel:vocabularyFilterMethod:CallAnalyticsJobSettings', callAnalyticsJobSettings_vocabularyFilterMethod - Specify how you want your custom vocabulary filter applied to your transcript.

To replace words with ***, choose mask.

To delete words, choose remove.

To flag words without changing them, choose tag.

CallAnalyticsJobSettings, callAnalyticsJobSettings_vocabularyFilterName - The name of the custom vocabulary filter you want to include in your Call Analytics transcription request. Custom vocabulary filter names are case sensitive.

Note that if you include VocabularyFilterName in your request, you must also include VocabularyFilterMethod.

CallAnalyticsJobSettings, callAnalyticsJobSettings_vocabularyName - The name of the custom vocabulary you want to include in your Call Analytics transcription request. Custom vocabulary names are case sensitive.

CallAnalyticsJobSummary

data CallAnalyticsJobSummary Source #

Provides detailed information about a specific Call Analytics job.

See: newCallAnalyticsJobSummary smart constructor.

Instances

Instances details
FromJSON CallAnalyticsJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSummary

Generic CallAnalyticsJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSummary

Associated Types

type Rep CallAnalyticsJobSummary :: Type -> Type #

Read CallAnalyticsJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSummary

Show CallAnalyticsJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSummary

NFData CallAnalyticsJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSummary

Methods

rnf :: CallAnalyticsJobSummary -> () #

Eq CallAnalyticsJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSummary

Hashable CallAnalyticsJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSummary

type Rep CallAnalyticsJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CallAnalyticsJobSummary

type Rep CallAnalyticsJobSummary = D1 ('MetaData "CallAnalyticsJobSummary" "Amazonka.Transcribe.Types.CallAnalyticsJobSummary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "CallAnalyticsJobSummary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "callAnalyticsJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "callAnalyticsJobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CallAnalyticsJobStatus)) :*: S1 ('MetaSel ('Just "completionTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 ('MetaSel ('Just "creationTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "failureReason") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode)) :*: S1 ('MetaSel ('Just "startTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))))))

newCallAnalyticsJobSummary :: CallAnalyticsJobSummary Source #

Create a value of CallAnalyticsJobSummary 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:callAnalyticsJobName:CallAnalyticsJobSummary', callAnalyticsJobSummary_callAnalyticsJobName - The name of the Call Analytics job. Job names are case sensitive and must be unique within an Amazon Web Services account.

$sel:callAnalyticsJobStatus:CallAnalyticsJobSummary', callAnalyticsJobSummary_callAnalyticsJobStatus - Provides the status of your Call Analytics job.

If the status is COMPLETED, the job is finished and you can find the results at the location specified in TranscriptFileUri (or RedactedTranscriptFileUri, if you requested transcript redaction). If the status is FAILED, FailureReason provides details on why your transcription job failed.

$sel:completionTime:CallAnalyticsJobSummary', callAnalyticsJobSummary_completionTime - The date and time the specified Call Analytics job finished processing.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:33:13.922000-07:00 represents a transcription job that started processing at 12:33 PM UTC-7 on May 4, 2022.

$sel:creationTime:CallAnalyticsJobSummary', callAnalyticsJobSummary_creationTime - The date and time the specified Call Analytics job request was made.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.

$sel:failureReason:CallAnalyticsJobSummary', callAnalyticsJobSummary_failureReason - If CallAnalyticsJobStatus is FAILED, FailureReason contains information about why the Call Analytics job failed. See also: Common Errors.

$sel:languageCode:CallAnalyticsJobSummary', callAnalyticsJobSummary_languageCode - The language code used to create your Call Analytics transcription.

$sel:startTime:CallAnalyticsJobSummary', callAnalyticsJobSummary_startTime - The date and time your Call Analytics job began processing.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.789000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.

CategoryProperties

data CategoryProperties Source #

Provides you with the properties of the Call Analytics category you specified in your request. This includes the list of rules that define the specified category.

See: newCategoryProperties smart constructor.

Instances

Instances details
FromJSON CategoryProperties Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CategoryProperties

Generic CategoryProperties Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CategoryProperties

Associated Types

type Rep CategoryProperties :: Type -> Type #

Read CategoryProperties Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CategoryProperties

Show CategoryProperties Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CategoryProperties

NFData CategoryProperties Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CategoryProperties

Methods

rnf :: CategoryProperties -> () #

Eq CategoryProperties Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CategoryProperties

Hashable CategoryProperties Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CategoryProperties

type Rep CategoryProperties Source # 
Instance details

Defined in Amazonka.Transcribe.Types.CategoryProperties

type Rep CategoryProperties = D1 ('MetaData "CategoryProperties" "Amazonka.Transcribe.Types.CategoryProperties" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "CategoryProperties'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "categoryName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "inputType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe InputType)) :*: (S1 ('MetaSel ('Just "lastUpdateTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "rules") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Rule)))))))

newCategoryProperties :: CategoryProperties Source #

Create a value of CategoryProperties 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:categoryName:CategoryProperties', categoryProperties_categoryName - The name of the Call Analytics category. Category names are case sensitive and must be unique within an Amazon Web Services account.

$sel:createTime:CategoryProperties', categoryProperties_createTime - The date and time the specified Call Analytics category was created.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents 12:32 PM UTC-7 on May 4, 2022.

$sel:inputType:CategoryProperties', categoryProperties_inputType - The input type associated with the specified category. POST_CALL refers to a category that is applied to batch transcriptions; REAL_TIME refers to a category that is applied to streaming transcriptions.

$sel:lastUpdateTime:CategoryProperties', categoryProperties_lastUpdateTime - The date and time the specified Call Analytics category was last updated.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-05T12:45:32.691000-07:00 represents 12:45 PM UTC-7 on May 5, 2022.

$sel:rules:CategoryProperties', categoryProperties_rules - The rules used to define a Call Analytics category. Each category can have between 1 and 20 rules.

ChannelDefinition

data ChannelDefinition Source #

Makes it possible to specify which speaker is on which channel. For example, if your agent is the first participant to speak, you would set ChannelId to 0 (to indicate the first channel) and ParticipantRole to AGENT (to indicate that it's the agent speaking).

See: newChannelDefinition smart constructor.

Instances

Instances details
FromJSON ChannelDefinition Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ChannelDefinition

ToJSON ChannelDefinition Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ChannelDefinition

Generic ChannelDefinition Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ChannelDefinition

Associated Types

type Rep ChannelDefinition :: Type -> Type #

Read ChannelDefinition Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ChannelDefinition

Show ChannelDefinition Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ChannelDefinition

NFData ChannelDefinition Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ChannelDefinition

Methods

rnf :: ChannelDefinition -> () #

Eq ChannelDefinition Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ChannelDefinition

Hashable ChannelDefinition Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ChannelDefinition

type Rep ChannelDefinition Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ChannelDefinition

type Rep ChannelDefinition = D1 ('MetaData "ChannelDefinition" "Amazonka.Transcribe.Types.ChannelDefinition" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ChannelDefinition'" 'PrefixI 'True) (S1 ('MetaSel ('Just "channelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "participantRole") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ParticipantRole))))

newChannelDefinition :: ChannelDefinition Source #

Create a value of ChannelDefinition 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:channelId:ChannelDefinition', channelDefinition_channelId - Specify the audio channel you want to define.

$sel:participantRole:ChannelDefinition', channelDefinition_participantRole - Specify the speaker you want to define. Omitting this parameter is equivalent to specifying both participants.

ContentRedaction

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.

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).

InputDataConfig

data InputDataConfig Source #

Contains the Amazon S3 location of the training data you want to use to create a new custom language model, and permissions to access this location.

When using InputDataConfig, you must include these sub-parameters: S3Uri and DataAccessRoleArn. You can optionally include TuningDataS3Uri.

See: newInputDataConfig smart constructor.

Instances

Instances details
FromJSON InputDataConfig Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputDataConfig

ToJSON InputDataConfig Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputDataConfig

Generic InputDataConfig Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputDataConfig

Associated Types

type Rep InputDataConfig :: Type -> Type #

Read InputDataConfig Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputDataConfig

Show InputDataConfig Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputDataConfig

NFData InputDataConfig Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputDataConfig

Methods

rnf :: InputDataConfig -> () #

Eq InputDataConfig Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputDataConfig

Hashable InputDataConfig Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputDataConfig

type Rep InputDataConfig Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InputDataConfig

type Rep InputDataConfig = D1 ('MetaData "InputDataConfig" "Amazonka.Transcribe.Types.InputDataConfig" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "InputDataConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "tuningDataS3Uri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "s3Uri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "dataAccessRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newInputDataConfig Source #

Create a value of InputDataConfig 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:tuningDataS3Uri:InputDataConfig', inputDataConfig_tuningDataS3Uri - The Amazon S3 location (URI) of the text files you want to use to tune your custom language model.

Here's an example URI path: s3://DOC-EXAMPLE-BUCKET/my-model-tuning-data/

$sel:s3Uri:InputDataConfig', inputDataConfig_s3Uri - The Amazon S3 location (URI) of the text files you want to use to train your custom language model.

Here's an example URI path: s3://DOC-EXAMPLE-BUCKET/my-model-training-data/

$sel:dataAccessRoleArn:InputDataConfig', inputDataConfig_dataAccessRoleArn - The Amazon Resource Name (ARN) of an IAM role that has permissions to access the Amazon S3 bucket that contains your input files. If the role that you specify doesn’t have the appropriate permissions to access the specified Amazon S3 location, your request fails.

IAM role ARNs have the format arn:partition:iam::account:role/role-name-with-path. For example: arn:aws:iam::111122223333:role/Admin.

For more information, see IAM ARNs.

InterruptionFilter

data InterruptionFilter Source #

Flag the presence or absence of interruptions in your Call Analytics transcription output.

Rules using InterruptionFilter are designed to match:

  • Instances where an agent interrupts a customer
  • Instances where a customer interrupts an agent
  • Either participant interrupting the other
  • A lack of interruptions

See Rule criteria for batch categories for usage examples.

See: newInterruptionFilter smart constructor.

Instances

Instances details
FromJSON InterruptionFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InterruptionFilter

ToJSON InterruptionFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InterruptionFilter

Generic InterruptionFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InterruptionFilter

Associated Types

type Rep InterruptionFilter :: Type -> Type #

Read InterruptionFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InterruptionFilter

Show InterruptionFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InterruptionFilter

NFData InterruptionFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InterruptionFilter

Methods

rnf :: InterruptionFilter -> () #

Eq InterruptionFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InterruptionFilter

Hashable InterruptionFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InterruptionFilter

type Rep InterruptionFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.InterruptionFilter

type Rep InterruptionFilter = D1 ('MetaData "InterruptionFilter" "Amazonka.Transcribe.Types.InterruptionFilter" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "InterruptionFilter'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "absoluteTimeRange") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AbsoluteTimeRange)) :*: S1 ('MetaSel ('Just "negate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "participantRole") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ParticipantRole)) :*: (S1 ('MetaSel ('Just "relativeTimeRange") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RelativeTimeRange)) :*: S1 ('MetaSel ('Just "threshold") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))))))

newInterruptionFilter :: InterruptionFilter Source #

Create a value of InterruptionFilter 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:absoluteTimeRange:InterruptionFilter', interruptionFilter_absoluteTimeRange - Makes it possible to specify a time range (in milliseconds) in your audio, during which you want to search for an interruption. See for more detail.

$sel:negate:InterruptionFilter', interruptionFilter_negate - Set to TRUE to flag speech that does not contain interruptions. Set to FALSE to flag speech that contains interruptions.

$sel:participantRole:InterruptionFilter', interruptionFilter_participantRole - Specify the interrupter that you want to flag. Omitting this parameter is equivalent to specifying both participants.

$sel:relativeTimeRange:InterruptionFilter', interruptionFilter_relativeTimeRange - Makes it possible to specify a time range (in percentage) in your media file, during which you want to search for an interruption. See for more detail.

$sel:threshold:InterruptionFilter', interruptionFilter_threshold - Specify the duration of the interruptions in milliseconds. For example, you can flag speech that contains more than 10,000 milliseconds of interruptions.

JobExecutionSettings

data JobExecutionSettings Source #

Makes it possible to control how your transcription job is processed. Currently, the only JobExecutionSettings modification you can choose is enabling job queueing using the AllowDeferredExecution sub-parameter.

If you include JobExecutionSettings in your request, you must also include the sub-parameters: AllowDeferredExecution and DataAccessRoleArn.

See: newJobExecutionSettings smart constructor.

Instances

Instances details
FromJSON JobExecutionSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.JobExecutionSettings

ToJSON JobExecutionSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.JobExecutionSettings

Generic JobExecutionSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.JobExecutionSettings

Associated Types

type Rep JobExecutionSettings :: Type -> Type #

Read JobExecutionSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.JobExecutionSettings

Show JobExecutionSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.JobExecutionSettings

NFData JobExecutionSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.JobExecutionSettings

Methods

rnf :: JobExecutionSettings -> () #

Eq JobExecutionSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.JobExecutionSettings

Hashable JobExecutionSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.JobExecutionSettings

type Rep JobExecutionSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.JobExecutionSettings

type Rep JobExecutionSettings = D1 ('MetaData "JobExecutionSettings" "Amazonka.Transcribe.Types.JobExecutionSettings" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "JobExecutionSettings'" 'PrefixI 'True) (S1 ('MetaSel ('Just "allowDeferredExecution") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "dataAccessRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newJobExecutionSettings :: JobExecutionSettings Source #

Create a value of JobExecutionSettings 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:allowDeferredExecution:JobExecutionSettings', jobExecutionSettings_allowDeferredExecution - Makes it possible to enable job queuing when your concurrent request limit is exceeded. When AllowDeferredExecution is set to true, transcription job requests are placed in a queue until the number of jobs falls below the concurrent request limit. If AllowDeferredExecution is set to false and the number of transcription job requests exceed the concurrent request limit, you get a LimitExceededException error.

Note that job queuing is enabled by default for Call Analytics jobs.

If you include AllowDeferredExecution in your request, you must also include DataAccessRoleArn.

$sel:dataAccessRoleArn:JobExecutionSettings', jobExecutionSettings_dataAccessRoleArn - The Amazon Resource Name (ARN) of an IAM role that has permissions to access the Amazon S3 bucket that contains your input files. If the role that you specify doesn’t have the appropriate permissions to access the specified Amazon S3 location, your request fails.

IAM role ARNs have the format arn:partition:iam::account:role/role-name-with-path. For example: arn:aws:iam::111122223333:role/Admin. For more information, see IAM ARNs.

Note that if you include DataAccessRoleArn in your request, you must also include AllowDeferredExecution.

LanguageCodeItem

data LanguageCodeItem Source #

Provides information on the speech contained in a discreet utterance when multi-language identification is enabled in your request. This utterance represents a block of speech consisting of one language, preceded or followed by a block of speech in a different language.

See: newLanguageCodeItem smart constructor.

Instances

Instances details
FromJSON LanguageCodeItem Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCodeItem

Generic LanguageCodeItem Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCodeItem

Associated Types

type Rep LanguageCodeItem :: Type -> Type #

Read LanguageCodeItem Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCodeItem

Show LanguageCodeItem Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCodeItem

NFData LanguageCodeItem Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCodeItem

Methods

rnf :: LanguageCodeItem -> () #

Eq LanguageCodeItem Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCodeItem

Hashable LanguageCodeItem Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCodeItem

type Rep LanguageCodeItem Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageCodeItem

type Rep LanguageCodeItem = D1 ('MetaData "LanguageCodeItem" "Amazonka.Transcribe.Types.LanguageCodeItem" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "LanguageCodeItem'" 'PrefixI 'True) (S1 ('MetaSel ('Just "durationInSeconds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode))))

newLanguageCodeItem :: LanguageCodeItem Source #

Create a value of LanguageCodeItem 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:durationInSeconds:LanguageCodeItem', languageCodeItem_durationInSeconds - Provides the total time, in seconds, each identified language is spoken in your media.

$sel:languageCode:LanguageCodeItem', languageCodeItem_languageCode - Provides the language code for each language identified in your media.

LanguageIdSettings

data LanguageIdSettings Source #

If using automatic language identification in your request and you want to apply a custom language model, a custom vocabulary, or a custom vocabulary filter, include LanguageIdSettings with the relevant sub-parameters (VocabularyName, LanguageModelName, and VocabularyFilterName). Note that multi-language identification (IdentifyMultipleLanguages) doesn't support custom language models.

LanguageIdSettings supports two to five language codes. Each language code you include can have an associated custom language model, custom vocabulary, and custom vocabulary filter. The language codes that you specify must match the languages of the associated custom language models, custom vocabularies, and custom vocabulary filters.

It's recommended that you include LanguageOptions when using LanguageIdSettings to ensure that the correct language dialect is identified. For example, if you specify a custom vocabulary that is in en-US but Amazon Transcribe determines that the language spoken in your media is en-AU, your custom vocabulary is not applied to your transcription. If you include LanguageOptions and include en-US as the only English language dialect, your custom vocabulary is applied to your transcription.

If you want to include a custom language model with your request but do not want to use automatic language identification, use instead the parameter with the LanguageModelName sub-parameter. If you want to include a custom vocabulary or a custom vocabulary filter (or both) with your request but do not want to use automatic language identification, use instead the parameter with the VocabularyName or VocabularyFilterName (or both) sub-parameter.

See: newLanguageIdSettings smart constructor.

Instances

Instances details
FromJSON LanguageIdSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageIdSettings

ToJSON LanguageIdSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageIdSettings

Generic LanguageIdSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageIdSettings

Associated Types

type Rep LanguageIdSettings :: Type -> Type #

Read LanguageIdSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageIdSettings

Show LanguageIdSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageIdSettings

NFData LanguageIdSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageIdSettings

Methods

rnf :: LanguageIdSettings -> () #

Eq LanguageIdSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageIdSettings

Hashable LanguageIdSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageIdSettings

type Rep LanguageIdSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageIdSettings

type Rep LanguageIdSettings = D1 ('MetaData "LanguageIdSettings" "Amazonka.Transcribe.Types.LanguageIdSettings" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "LanguageIdSettings'" 'PrefixI 'True) (S1 ('MetaSel ('Just "languageModelName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "vocabularyFilterName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newLanguageIdSettings :: LanguageIdSettings Source #

Create a value of LanguageIdSettings 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:languageModelName:LanguageIdSettings', languageIdSettings_languageModelName - The name of the custom language model you want to use when processing your transcription job. Note that custom language model names are case sensitive.

The language of the specified custom language model must match the language code that you specify in your transcription request. If the languages don't match, the custom language model isn't applied. There are no errors or warnings associated with a language mismatch.

$sel:vocabularyFilterName:LanguageIdSettings', languageIdSettings_vocabularyFilterName - The name of the custom vocabulary filter you want to use when processing your transcription job. Custom vocabulary filter names are case sensitive.

The language of the specified custom vocabulary filter must match the language code that you specify in your transcription request. If the languages don't match, the custom vocabulary filter isn't applied. There are no errors or warnings associated with a language mismatch.

Note that if you include VocabularyFilterName in your request, you must also include VocabularyFilterMethod.

$sel:vocabularyName:LanguageIdSettings', languageIdSettings_vocabularyName - The name of the custom vocabulary you want to use when processing your transcription job. Custom vocabulary names are case sensitive.

The language of the specified custom vocabulary must match the language code that you specify in your transcription request. If the languages don't match, the custom vocabulary isn't applied. There are no errors or warnings associated with a language mismatch.

LanguageModel

data LanguageModel Source #

Provides information about a custom language model, including the base model name, when the model was created, the location of the files used to train the model, when the model was last modified, the name you chose for the model, its language, its processing state, and if there is an upgrade available for the base model.

See: newLanguageModel smart constructor.

Instances

Instances details
FromJSON LanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageModel

Generic LanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageModel

Associated Types

type Rep LanguageModel :: Type -> Type #

Read LanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageModel

Show LanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageModel

NFData LanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageModel

Methods

rnf :: LanguageModel -> () #

Eq LanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageModel

Hashable LanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageModel

type Rep LanguageModel Source # 
Instance details

Defined in Amazonka.Transcribe.Types.LanguageModel

newLanguageModel :: LanguageModel Source #

Create a value of LanguageModel 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:baseModelName:LanguageModel', languageModel_baseModelName - The Amazon Transcribe standard language model, or base model, used to create your custom language model.

$sel:createTime:LanguageModel', languageModel_createTime - The date and time the specified custom language model was created.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents 12:32 PM UTC-7 on May 4, 2022.

$sel:failureReason:LanguageModel', languageModel_failureReason - If ModelStatus is FAILED, FailureReason contains information about why the custom language model request failed. See also: Common Errors.

$sel:inputDataConfig:LanguageModel', languageModel_inputDataConfig - The Amazon S3 location of the input files used to train and tune your custom language model, in addition to the data access role ARN (Amazon Resource Name) that has permissions to access these data.

$sel:languageCode:LanguageModel', languageModel_languageCode - The language code used to create your custom language model. Each custom language model must contain terms in only one language, and the language you select for your custom language model must match the language of your training and tuning data.

For a list of supported languages and their associated language codes, refer to the Supported languages table. Note that U.S. English (en-US) is the only language supported with Amazon Transcribe Medical.

$sel:lastModifiedTime:LanguageModel', languageModel_lastModifiedTime - The date and time the specified custom language model was last modified.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents 12:32 PM UTC-7 on May 4, 2022.

$sel:modelName:LanguageModel', languageModel_modelName - A unique name, chosen by you, for your custom language model.

This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account.

$sel:modelStatus:LanguageModel', languageModel_modelStatus - The status of the specified custom language model. When the status displays as COMPLETED the model is ready for use.

$sel:upgradeAvailability:LanguageModel', languageModel_upgradeAvailability - Shows if a more current base model is available for use with the specified custom language model.

If false, your custom language model is using the most up-to-date base model.

If true, there is a newer base model available than the one your language model is using.

Note that to update a base model, you must recreate the custom language model using the new base model. Base model upgrades for existing custom language models are not supported.

Media

data Media Source #

Describes the Amazon S3 location of the media file you want to use in your request.

For information on supported media formats, refer to the MediaFormat parameter or the Media formats section in the Amazon S3 Developer Guide.

See: newMedia smart constructor.

Constructors

Media' (Maybe Text) (Maybe Text) 

Instances

Instances details
FromJSON Media Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Media

ToJSON Media Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Media

Generic Media Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Media

Associated Types

type Rep Media :: Type -> Type #

Methods

from :: Media -> Rep Media x #

to :: Rep Media x -> Media #

Read Media Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Media

Show Media Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Media

Methods

showsPrec :: Int -> Media -> ShowS #

show :: Media -> String #

showList :: [Media] -> ShowS #

NFData Media Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Media

Methods

rnf :: Media -> () #

Eq Media Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Media

Methods

(==) :: Media -> Media -> Bool #

(/=) :: Media -> Media -> Bool #

Hashable Media Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Media

Methods

hashWithSalt :: Int -> Media -> Int #

hash :: Media -> Int #

type Rep Media Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Media

type Rep Media = D1 ('MetaData "Media" "Amazonka.Transcribe.Types.Media" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "Media'" 'PrefixI 'True) (S1 ('MetaSel ('Just "mediaFileUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "redactedMediaFileUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newMedia :: Media Source #

Create a value of Media 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:mediaFileUri:Media', media_mediaFileUri - The Amazon S3 location of the media file you want to transcribe. For example:

  • s3://DOC-EXAMPLE-BUCKET/my-media-file.flac
  • s3://DOC-EXAMPLE-BUCKET/media-files/my-media-file.flac

Note that the Amazon S3 bucket that contains your input media must be located in the same Amazon Web Services Region where you're making your transcription request.

$sel:redactedMediaFileUri:Media', media_redactedMediaFileUri - The Amazon S3 location of the media file you want to redact. For example:

  • s3://DOC-EXAMPLE-BUCKET/my-media-file.flac
  • s3://DOC-EXAMPLE-BUCKET/media-files/my-media-file.flac

Note that the Amazon S3 bucket that contains your input media must be located in the same Amazon Web Services Region where you're making your transcription request.

RedactedMediaFileUri produces a redacted audio file in addition to a redacted transcript. It is only supported for Call Analytics (StartCallAnalyticsJob) transcription requests.

MedicalTranscript

data MedicalTranscript Source #

Provides you with the Amazon S3 URI you can use to access your transcript.

See: newMedicalTranscript smart constructor.

Constructors

MedicalTranscript' (Maybe Text) 

Instances

Instances details
FromJSON MedicalTranscript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscript

Generic MedicalTranscript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscript

Associated Types

type Rep MedicalTranscript :: Type -> Type #

Read MedicalTranscript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscript

Show MedicalTranscript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscript

NFData MedicalTranscript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscript

Methods

rnf :: MedicalTranscript -> () #

Eq MedicalTranscript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscript

Hashable MedicalTranscript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscript

type Rep MedicalTranscript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscript

type Rep MedicalTranscript = D1 ('MetaData "MedicalTranscript" "Amazonka.Transcribe.Types.MedicalTranscript" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "MedicalTranscript'" 'PrefixI 'True) (S1 ('MetaSel ('Just "transcriptFileUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newMedicalTranscript :: MedicalTranscript Source #

Create a value of MedicalTranscript 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:transcriptFileUri:MedicalTranscript', medicalTranscript_transcriptFileUri - The Amazon S3 location of your transcript. You can use this URI to access or download your transcript.

Note that this is the Amazon S3 location you specified in your request using the OutputBucketName parameter.

MedicalTranscriptionJob

data MedicalTranscriptionJob Source #

Provides detailed information about a medical transcription job.

To view the status of the specified medical transcription job, check the TranscriptionJobStatus field. If the status is COMPLETED, the job is finished and you can find the results at the location specified in TranscriptFileUri. If the status is FAILED, FailureReason provides details on why your transcription job failed.

See: newMedicalTranscriptionJob smart constructor.

Instances

Instances details
FromJSON MedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJob

Generic MedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJob

Associated Types

type Rep MedicalTranscriptionJob :: Type -> Type #

Read MedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJob

Show MedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJob

NFData MedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJob

Methods

rnf :: MedicalTranscriptionJob -> () #

Eq MedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJob

Hashable MedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJob

type Rep MedicalTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJob

type Rep MedicalTranscriptionJob = D1 ('MetaData "MedicalTranscriptionJob" "Amazonka.Transcribe.Types.MedicalTranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "MedicalTranscriptionJob'" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "completionTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "contentIdentificationType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe MedicalContentIdentificationType))) :*: (S1 ('MetaSel ('Just "creationTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "failureReason") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode)) :*: S1 ('MetaSel ('Just "media") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Media))) :*: (S1 ('MetaSel ('Just "mediaFormat") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe MediaFormat)) :*: S1 ('MetaSel ('Just "mediaSampleRateHertz") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))))) :*: (((S1 ('MetaSel ('Just "medicalTranscriptionJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "settings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe MedicalTranscriptionSetting))) :*: (S1 ('MetaSel ('Just "specialty") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Specialty)) :*: S1 ('MetaSel ('Just "startTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Tag))) :*: S1 ('MetaSel ('Just "transcript") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe MedicalTranscript))) :*: (S1 ('MetaSel ('Just "transcriptionJobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TranscriptionJobStatus)) :*: S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Type)))))))

newMedicalTranscriptionJob :: MedicalTranscriptionJob Source #

Create a value of MedicalTranscriptionJob 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:completionTime:MedicalTranscriptionJob', medicalTranscriptionJob_completionTime - The date and time the specified medical transcription job finished processing.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:33:13.922000-07:00 represents a transcription job that started processing at 12:33 PM UTC-7 on May 4, 2022.

$sel:contentIdentificationType:MedicalTranscriptionJob', medicalTranscriptionJob_contentIdentificationType - Indicates whether content identification was enabled for your transcription request.

$sel:creationTime:MedicalTranscriptionJob', medicalTranscriptionJob_creationTime - The date and time the specified medical transcription job request was made.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.

$sel:failureReason:MedicalTranscriptionJob', medicalTranscriptionJob_failureReason - If TranscriptionJobStatus is FAILED, FailureReason contains information about why the transcription job request failed.

The FailureReason field contains one of the following values:

  • Unsupported media format.

    The media format specified in MediaFormat isn't valid. Refer to MediaFormat for a list of supported formats.

  • The media format provided does not match the detected media format.

    The media format specified in MediaFormat doesn't match the format of the input file. Check the media format of your media file and correct the specified value.

  • Invalid sample rate for audio file.

    The sample rate specified in MediaSampleRateHertz isn't valid. The sample rate must be between 16,000 and 48,000 hertz.

  • The sample rate provided does not match the detected sample rate.

    The sample rate specified in MediaSampleRateHertz doesn't match the sample rate detected in your input media file. Check the sample rate of your media file and correct the specified value.

  • Invalid file size: file size too large.

    The size of your media file is larger than what Amazon Transcribe can process. For more information, refer to Guidelines and quotas.

  • Invalid number of channels: number of channels too large.

    Your audio contains more channels than Amazon Transcribe is able to process. For more information, refer to Guidelines and quotas.

$sel:languageCode:MedicalTranscriptionJob', medicalTranscriptionJob_languageCode - The language code used to create your medical transcription job. US English (en-US) is the only supported language for medical transcriptions.

$sel:media:MedicalTranscriptionJob', medicalTranscriptionJob_media - Undocumented member.

$sel:mediaFormat:MedicalTranscriptionJob', medicalTranscriptionJob_mediaFormat - The format of the input media file.

$sel:mediaSampleRateHertz:MedicalTranscriptionJob', medicalTranscriptionJob_mediaSampleRateHertz - The sample rate, in hertz, of the audio track in your input media file.

$sel:medicalTranscriptionJobName:MedicalTranscriptionJob', medicalTranscriptionJob_medicalTranscriptionJobName - The name of the medical transcription job. Job names are case sensitive and must be unique within an Amazon Web Services account.

$sel:settings:MedicalTranscriptionJob', medicalTranscriptionJob_settings - Provides information on any additional settings that were included in your request. Additional settings include channel identification, alternative transcriptions, speaker partitioning, custom vocabularies, and custom vocabulary filters.

$sel:specialty:MedicalTranscriptionJob', medicalTranscriptionJob_specialty - Describes the medical specialty represented in your media.

$sel:startTime:MedicalTranscriptionJob', medicalTranscriptionJob_startTime - The date and time the specified medical transcription job began processing.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.789000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.

$sel:tags:MedicalTranscriptionJob', medicalTranscriptionJob_tags - The tags, each in the form of a key:value pair, assigned to the specified medical transcription job.

$sel:transcript:MedicalTranscriptionJob', medicalTranscriptionJob_transcript - Provides you with the Amazon S3 URI you can use to access your transcript.

$sel:transcriptionJobStatus:MedicalTranscriptionJob', medicalTranscriptionJob_transcriptionJobStatus - Provides the status of the specified medical transcription job.

If the status is COMPLETED, the job is finished and you can find the results at the location specified in TranscriptFileUri. If the status is FAILED, FailureReason provides details on why your transcription job failed.

$sel:type':MedicalTranscriptionJob', medicalTranscriptionJob_type - Indicates whether the input media is a dictation or a conversation, as specified in the StartMedicalTranscriptionJob request.

MedicalTranscriptionJobSummary

data MedicalTranscriptionJobSummary Source #

Provides detailed information about a specific medical transcription job.

See: newMedicalTranscriptionJobSummary smart constructor.

Instances

Instances details
FromJSON MedicalTranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJobSummary

Generic MedicalTranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJobSummary

Associated Types

type Rep MedicalTranscriptionJobSummary :: Type -> Type #

Read MedicalTranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJobSummary

Show MedicalTranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJobSummary

NFData MedicalTranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJobSummary

Eq MedicalTranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJobSummary

Hashable MedicalTranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJobSummary

type Rep MedicalTranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionJobSummary

type Rep MedicalTranscriptionJobSummary = D1 ('MetaData "MedicalTranscriptionJobSummary" "Amazonka.Transcribe.Types.MedicalTranscriptionJobSummary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "MedicalTranscriptionJobSummary'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "completionTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "contentIdentificationType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe MedicalContentIdentificationType))) :*: (S1 ('MetaSel ('Just "creationTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "failureReason") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode))))) :*: ((S1 ('MetaSel ('Just "medicalTranscriptionJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "outputLocationType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe OutputLocationType)) :*: S1 ('MetaSel ('Just "specialty") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Specialty)))) :*: (S1 ('MetaSel ('Just "startTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "transcriptionJobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TranscriptionJobStatus)) :*: S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Type)))))))

newMedicalTranscriptionJobSummary :: MedicalTranscriptionJobSummary Source #

Create a value of MedicalTranscriptionJobSummary 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:completionTime:MedicalTranscriptionJobSummary', medicalTranscriptionJobSummary_completionTime - The date and time the specified medical transcription job finished processing.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:33:13.922000-07:00 represents a transcription job that started processing at 12:33 PM UTC-7 on May 4, 2022.

$sel:contentIdentificationType:MedicalTranscriptionJobSummary', medicalTranscriptionJobSummary_contentIdentificationType - Labels all personal health information (PHI) identified in your transcript. For more information, see Identifying personal health information (PHI) in a transcription.

$sel:creationTime:MedicalTranscriptionJobSummary', medicalTranscriptionJobSummary_creationTime - The date and time the specified medical transcription job request was made.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.

$sel:failureReason:MedicalTranscriptionJobSummary', medicalTranscriptionJobSummary_failureReason - If TranscriptionJobStatus is FAILED, FailureReason contains information about why the transcription job failed. See also: Common Errors.

$sel:languageCode:MedicalTranscriptionJobSummary', medicalTranscriptionJobSummary_languageCode - The language code used to create your medical transcription. US English (en-US) is the only supported language for medical transcriptions.

$sel:medicalTranscriptionJobName:MedicalTranscriptionJobSummary', medicalTranscriptionJobSummary_medicalTranscriptionJobName - The name of the medical transcription job. Job names are case sensitive and must be unique within an Amazon Web Services account.

$sel:outputLocationType:MedicalTranscriptionJobSummary', medicalTranscriptionJobSummary_outputLocationType - Indicates where the specified medical transcription output is stored.

If the value is CUSTOMER_BUCKET, the location is the Amazon S3 bucket you specified using the OutputBucketName parameter in your request. If you also included OutputKey in your request, your output is located in the path you specified in your request.

If the value is SERVICE_BUCKET, the location is a service-managed Amazon S3 bucket. To access a transcript stored in a service-managed bucket, use the URI shown in the TranscriptFileUri field.

$sel:specialty:MedicalTranscriptionJobSummary', medicalTranscriptionJobSummary_specialty - Provides the medical specialty represented in your media.

$sel:startTime:MedicalTranscriptionJobSummary', medicalTranscriptionJobSummary_startTime - The date and time your medical transcription job began processing.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.789000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.

$sel:transcriptionJobStatus:MedicalTranscriptionJobSummary', medicalTranscriptionJobSummary_transcriptionJobStatus - Provides the status of your medical transcription job.

If the status is COMPLETED, the job is finished and you can find the results at the location specified in TranscriptFileUri. If the status is FAILED, FailureReason provides details on why your transcription job failed.

$sel:type':MedicalTranscriptionJobSummary', medicalTranscriptionJobSummary_type - Indicates whether the input media is a dictation or a conversation, as specified in the StartMedicalTranscriptionJob request.

MedicalTranscriptionSetting

data MedicalTranscriptionSetting Source #

Allows additional optional settings in your request, including channel identification, alternative transcriptions, and speaker partitioning. You can use that to apply custom vocabularies to your medical transcription job.

See: newMedicalTranscriptionSetting smart constructor.

Instances

Instances details
FromJSON MedicalTranscriptionSetting Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionSetting

ToJSON MedicalTranscriptionSetting Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionSetting

Generic MedicalTranscriptionSetting Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionSetting

Associated Types

type Rep MedicalTranscriptionSetting :: Type -> Type #

Read MedicalTranscriptionSetting Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionSetting

Show MedicalTranscriptionSetting Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionSetting

NFData MedicalTranscriptionSetting Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionSetting

Eq MedicalTranscriptionSetting Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionSetting

Hashable MedicalTranscriptionSetting Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionSetting

type Rep MedicalTranscriptionSetting Source # 
Instance details

Defined in Amazonka.Transcribe.Types.MedicalTranscriptionSetting

type Rep MedicalTranscriptionSetting = D1 ('MetaData "MedicalTranscriptionSetting" "Amazonka.Transcribe.Types.MedicalTranscriptionSetting" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "MedicalTranscriptionSetting'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "channelIdentification") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "maxAlternatives") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "maxSpeakerLabels") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))) :*: (S1 ('MetaSel ('Just "showAlternatives") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "showSpeakerLabels") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newMedicalTranscriptionSetting :: MedicalTranscriptionSetting Source #

Create a value of MedicalTranscriptionSetting 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:channelIdentification:MedicalTranscriptionSetting', medicalTranscriptionSetting_channelIdentification - Enables channel identification in multi-channel audio.

Channel identification transcribes the audio on each channel independently, then appends the output for each channel into one transcript.

If you have multi-channel audio and do not enable channel identification, your audio is transcribed in a continuous manner and your transcript does not separate the speech by channel.

You can't include both ShowSpeakerLabels and ChannelIdentification in the same request. Including both parameters returns a BadRequestException.

For more information, see Transcribing multi-channel audio.

$sel:maxAlternatives:MedicalTranscriptionSetting', medicalTranscriptionSetting_maxAlternatives - Indicate the maximum number of alternative transcriptions you want Amazon Transcribe Medical to include in your transcript.

If you select a number greater than the number of alternative transcriptions generated by Amazon Transcribe Medical, only the actual number of alternative transcriptions are included.

If you include MaxAlternatives in your request, you must also include ShowAlternatives with a value of true.

For more information, see Alternative transcriptions.

$sel:maxSpeakerLabels:MedicalTranscriptionSetting', medicalTranscriptionSetting_maxSpeakerLabels - Specify the maximum number of speakers you want to partition in your media.

Note that if your media contains more speakers than the specified number, multiple speakers are treated as a single speaker.

If you specify the MaxSpeakerLabels field, you must set the ShowSpeakerLabels field to true.

$sel:showAlternatives:MedicalTranscriptionSetting', medicalTranscriptionSetting_showAlternatives - To include alternative transcriptions within your transcription output, include ShowAlternatives in your transcription request.

If you include ShowAlternatives, you must also include MaxAlternatives, which is the maximum number of alternative transcriptions you want Amazon Transcribe Medical to generate.

For more information, see Alternative transcriptions.

$sel:showSpeakerLabels:MedicalTranscriptionSetting', medicalTranscriptionSetting_showSpeakerLabels - Enables speaker partitioning (diarization) in your transcription output. Speaker partitioning labels the speech from individual speakers in your media file.

If you enable ShowSpeakerLabels in your request, you must also include MaxSpeakerLabels.

You can't include ShowSpeakerLabels and ChannelIdentification in the same request. Including both parameters returns a BadRequestException.

For more information, see Partitioning speakers (diarization).

$sel:vocabularyName:MedicalTranscriptionSetting', medicalTranscriptionSetting_vocabularyName - The name of the custom vocabulary you want to use when processing your medical transcription job. Custom vocabulary names are case sensitive.

The language of the specified custom vocabulary must match the language code that you specify in your transcription request. If the languages don't match, the custom vocabulary isn't applied. There are no errors or warnings associated with a language mismatch. US English (en-US) is the only valid language for Amazon Transcribe Medical.

ModelSettings

data ModelSettings Source #

Provides the name of the custom language model that was included in the specified transcription job.

Only use ModelSettings with the LanguageModelName sub-parameter if you're not using automatic language identification (). If using LanguageIdSettings in your request, this parameter contains a LanguageModelName sub-parameter.

See: newModelSettings smart constructor.

Constructors

ModelSettings' (Maybe Text) 

Instances

Instances details
FromJSON ModelSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelSettings

ToJSON ModelSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelSettings

Generic ModelSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelSettings

Associated Types

type Rep ModelSettings :: Type -> Type #

Read ModelSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelSettings

Show ModelSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelSettings

NFData ModelSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelSettings

Methods

rnf :: ModelSettings -> () #

Eq ModelSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelSettings

Hashable ModelSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelSettings

type Rep ModelSettings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.ModelSettings

type Rep ModelSettings = D1 ('MetaData "ModelSettings" "Amazonka.Transcribe.Types.ModelSettings" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ModelSettings'" 'PrefixI 'True) (S1 ('MetaSel ('Just "languageModelName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newModelSettings :: ModelSettings Source #

Create a value of ModelSettings 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:languageModelName:ModelSettings', modelSettings_languageModelName - The name of the custom language model you want to use when processing your transcription job. Note that custom language model names are case sensitive.

The language of the specified custom language model must match the language code that you specify in your transcription request. If the languages don't match, the custom language model isn't applied. There are no errors or warnings associated with a language mismatch.

NonTalkTimeFilter

data NonTalkTimeFilter Source #

Flag the presence or absence of periods of silence in your Call Analytics transcription output.

Rules using NonTalkTimeFilter are designed to match:

  • The presence of silence at specified periods throughout the call
  • The presence of speech at specified periods throughout the call

See Rule criteria for batch categories for usage examples.

See: newNonTalkTimeFilter smart constructor.

Instances

Instances details
FromJSON NonTalkTimeFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.NonTalkTimeFilter

ToJSON NonTalkTimeFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.NonTalkTimeFilter

Generic NonTalkTimeFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.NonTalkTimeFilter

Associated Types

type Rep NonTalkTimeFilter :: Type -> Type #

Read NonTalkTimeFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.NonTalkTimeFilter

Show NonTalkTimeFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.NonTalkTimeFilter

NFData NonTalkTimeFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.NonTalkTimeFilter

Methods

rnf :: NonTalkTimeFilter -> () #

Eq NonTalkTimeFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.NonTalkTimeFilter

Hashable NonTalkTimeFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.NonTalkTimeFilter

type Rep NonTalkTimeFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.NonTalkTimeFilter

type Rep NonTalkTimeFilter = D1 ('MetaData "NonTalkTimeFilter" "Amazonka.Transcribe.Types.NonTalkTimeFilter" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "NonTalkTimeFilter'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "absoluteTimeRange") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AbsoluteTimeRange)) :*: S1 ('MetaSel ('Just "negate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "relativeTimeRange") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RelativeTimeRange)) :*: S1 ('MetaSel ('Just "threshold") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))

newNonTalkTimeFilter :: NonTalkTimeFilter Source #

Create a value of NonTalkTimeFilter 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:absoluteTimeRange:NonTalkTimeFilter', nonTalkTimeFilter_absoluteTimeRange - Makes it possible to specify a time range (in milliseconds) in your audio, during which you want to search for a period of silence. See for more detail.

$sel:negate:NonTalkTimeFilter', nonTalkTimeFilter_negate - Set to TRUE to flag periods of speech. Set to FALSE to flag periods of silence

$sel:relativeTimeRange:NonTalkTimeFilter', nonTalkTimeFilter_relativeTimeRange - Makes it possible to specify a time range (in percentage) in your media file, during which you want to search for a period of silence. See for more detail.

$sel:threshold:NonTalkTimeFilter', nonTalkTimeFilter_threshold - Specify the duration, in milliseconds, of the period of silence that you want to flag. For example, you can flag a silent period that lasts 30,000 milliseconds.

RelativeTimeRange

data RelativeTimeRange Source #

A time range, in percentage, between two points in your media file.

You can use StartPercentage and EndPercentage to search a custom segment. For example, setting StartPercentage to 10 and EndPercentage to 50 only searches for your specified criteria in the audio contained between the 10 percent mark and the 50 percent mark of your media file.

You can use also First to search from the start of the media file until the time that you specify. Or use Last to search from the time that you specify until the end of the media file. For example, setting First to 10 only searches for your specified criteria in the audio contained in the first 10 percent of the media file.

If you prefer to use milliseconds instead of percentage, see .

See: newRelativeTimeRange smart constructor.

Instances

Instances details
FromJSON RelativeTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RelativeTimeRange

ToJSON RelativeTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RelativeTimeRange

Generic RelativeTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RelativeTimeRange

Associated Types

type Rep RelativeTimeRange :: Type -> Type #

Read RelativeTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RelativeTimeRange

Show RelativeTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RelativeTimeRange

NFData RelativeTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RelativeTimeRange

Methods

rnf :: RelativeTimeRange -> () #

Eq RelativeTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RelativeTimeRange

Hashable RelativeTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RelativeTimeRange

type Rep RelativeTimeRange Source # 
Instance details

Defined in Amazonka.Transcribe.Types.RelativeTimeRange

type Rep RelativeTimeRange = D1 ('MetaData "RelativeTimeRange" "Amazonka.Transcribe.Types.RelativeTimeRange" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "RelativeTimeRange'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "endPercentage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "first") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "last") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "startPercentage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))

newRelativeTimeRange :: RelativeTimeRange Source #

Create a value of RelativeTimeRange 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:endPercentage:RelativeTimeRange', relativeTimeRange_endPercentage - The time, in percentage, when Amazon Transcribe stops searching for the specified criteria in your media file. If you include EndPercentage in your request, you must also include StartPercentage.

$sel:first:RelativeTimeRange', relativeTimeRange_first - The time, in percentage, from the start of your media file until the specified value. Amazon Transcribe searches for your specified criteria in this time segment.

$sel:last:RelativeTimeRange', relativeTimeRange_last - The time, in percentage, from the specified value until the end of your media file. Amazon Transcribe searches for your specified criteria in this time segment.

$sel:startPercentage:RelativeTimeRange', relativeTimeRange_startPercentage - The time, in percentage, when Amazon Transcribe starts searching for the specified criteria in your media file. If you include StartPercentage in your request, you must also include EndPercentage.

Rule

data Rule Source #

A rule is a set of criteria that you can specify to flag an attribute in your Call Analytics output. Rules define a Call Analytics category.

Rules can include these parameters: , , , and .

To learn more about Call Analytics rules and categories, see Creating categories for batch transcriptions and Creating categories for streaming transcriptions.

To learn more about Call Analytics, see Analyzing call center audio with Call Analytics.

See: newRule smart constructor.

Instances

Instances details
FromJSON Rule Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Rule

ToJSON Rule Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Rule

Generic Rule Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Rule

Associated Types

type Rep Rule :: Type -> Type #

Methods

from :: Rule -> Rep Rule x #

to :: Rep Rule x -> Rule #

Read Rule Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Rule

Show Rule Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Rule

Methods

showsPrec :: Int -> Rule -> ShowS #

show :: Rule -> String #

showList :: [Rule] -> ShowS #

NFData Rule Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Rule

Methods

rnf :: Rule -> () #

Eq Rule Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Rule

Methods

(==) :: Rule -> Rule -> Bool #

(/=) :: Rule -> Rule -> Bool #

Hashable Rule Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Rule

Methods

hashWithSalt :: Int -> Rule -> Int #

hash :: Rule -> Int #

type Rep Rule Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Rule

type Rep Rule = D1 ('MetaData "Rule" "Amazonka.Transcribe.Types.Rule" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "Rule'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "interruptionFilter") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe InterruptionFilter)) :*: S1 ('MetaSel ('Just "nonTalkTimeFilter") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe NonTalkTimeFilter))) :*: (S1 ('MetaSel ('Just "sentimentFilter") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SentimentFilter)) :*: S1 ('MetaSel ('Just "transcriptFilter") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TranscriptFilter)))))

newRule :: Rule Source #

Create a value of Rule 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:interruptionFilter:Rule', rule_interruptionFilter - Flag the presence or absence of interruptions in your Call Analytics transcription output. Refer to for more detail.

$sel:nonTalkTimeFilter:Rule', rule_nonTalkTimeFilter - Flag the presence or absence of periods of silence in your Call Analytics transcription output. Refer to for more detail.

$sel:sentimentFilter:Rule', rule_sentimentFilter - Flag the presence or absence of specific sentiments in your Call Analytics transcription output. Refer to for more detail.

$sel:transcriptFilter:Rule', rule_transcriptFilter - Flag the presence or absence of specific words or phrases in your Call Analytics transcription output. Refer to for more detail.

SentimentFilter

data SentimentFilter Source #

Flag the presence or absence of specific sentiments detected in your Call Analytics transcription output.

Rules using SentimentFilter are designed to match:

  • The presence or absence of a positive sentiment felt by the customer, agent, or both at specified points in the call
  • The presence or absence of a negative sentiment felt by the customer, agent, or both at specified points in the call
  • The presence or absence of a neutral sentiment felt by the customer, agent, or both at specified points in the call
  • The presence or absence of a mixed sentiment felt by the customer, the agent, or both at specified points in the call

See Rule criteria for batch categories for usage examples.

See: newSentimentFilter smart constructor.

Instances

Instances details
FromJSON SentimentFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentFilter

ToJSON SentimentFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentFilter

Generic SentimentFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentFilter

Associated Types

type Rep SentimentFilter :: Type -> Type #

Read SentimentFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentFilter

Show SentimentFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentFilter

NFData SentimentFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentFilter

Methods

rnf :: SentimentFilter -> () #

Eq SentimentFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentFilter

Hashable SentimentFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentFilter

type Rep SentimentFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SentimentFilter

type Rep SentimentFilter = D1 ('MetaData "SentimentFilter" "Amazonka.Transcribe.Types.SentimentFilter" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "SentimentFilter'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "absoluteTimeRange") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AbsoluteTimeRange)) :*: S1 ('MetaSel ('Just "negate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "participantRole") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ParticipantRole)) :*: (S1 ('MetaSel ('Just "relativeTimeRange") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RelativeTimeRange)) :*: S1 ('MetaSel ('Just "sentiments") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty SentimentValue))))))

newSentimentFilter Source #

Create a value of SentimentFilter 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:absoluteTimeRange:SentimentFilter', sentimentFilter_absoluteTimeRange - Makes it possible to specify a time range (in milliseconds) in your audio, during which you want to search for the specified sentiments. See for more detail.

$sel:negate:SentimentFilter', sentimentFilter_negate - Set to TRUE to flag the sentiments that you didn't include in your request. Set to FALSE to flag the sentiments that you specified in your request.

$sel:participantRole:SentimentFilter', sentimentFilter_participantRole - Specify the participant that you want to flag. Omitting this parameter is equivalent to specifying both participants.

$sel:relativeTimeRange:SentimentFilter', sentimentFilter_relativeTimeRange - Makes it possible to specify a time range (in percentage) in your media file, during which you want to search for the specified sentiments. See for more detail.

$sel:sentiments:SentimentFilter', sentimentFilter_sentiments - Specify the sentiments that you want to flag.

Settings

data Settings Source #

Allows additional optional settings in your request, including channel identification, alternative transcriptions, and speaker partitioning. You can use that to apply custom vocabularies to your transcription job.

See: newSettings smart constructor.

Instances

Instances details
FromJSON Settings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Settings

ToJSON Settings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Settings

Generic Settings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Settings

Associated Types

type Rep Settings :: Type -> Type #

Methods

from :: Settings -> Rep Settings x #

to :: Rep Settings x -> Settings #

Read Settings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Settings

Show Settings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Settings

NFData Settings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Settings

Methods

rnf :: Settings -> () #

Eq Settings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Settings

Hashable Settings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Settings

Methods

hashWithSalt :: Int -> Settings -> Int #

hash :: Settings -> Int #

type Rep Settings Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Settings

type Rep Settings = D1 ('MetaData "Settings" "Amazonka.Transcribe.Types.Settings" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "Settings'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "channelIdentification") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "maxAlternatives") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "maxSpeakerLabels") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "showAlternatives") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))) :*: ((S1 ('MetaSel ('Just "showSpeakerLabels") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "vocabularyFilterMethod") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VocabularyFilterMethod))) :*: (S1 ('MetaSel ('Just "vocabularyFilterName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newSettings :: Settings Source #

Create a value of Settings 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:channelIdentification:Settings', settings_channelIdentification - Enables channel identification in multi-channel audio.

Channel identification transcribes the audio on each channel independently, then appends the output for each channel into one transcript.

You can't include both ShowSpeakerLabels and ChannelIdentification in the same request. Including both parameters returns a BadRequestException.

For more information, see Transcribing multi-channel audio.

$sel:maxAlternatives:Settings', settings_maxAlternatives - Indicate the maximum number of alternative transcriptions you want Amazon Transcribe to include in your transcript.

If you select a number greater than the number of alternative transcriptions generated by Amazon Transcribe, only the actual number of alternative transcriptions are included.

If you include MaxAlternatives in your request, you must also include ShowAlternatives with a value of true.

For more information, see Alternative transcriptions.

$sel:maxSpeakerLabels:Settings', settings_maxSpeakerLabels - Specify the maximum number of speakers you want to partition in your media.

Note that if your media contains more speakers than the specified number, multiple speakers are treated as a single speaker.

If you specify the MaxSpeakerLabels field, you must set the ShowSpeakerLabels field to true.

$sel:showAlternatives:Settings', settings_showAlternatives - To include alternative transcriptions within your transcription output, include ShowAlternatives in your transcription request.

If you have multi-channel audio and do not enable channel identification, your audio is transcribed in a continuous manner and your transcript does not separate the speech by channel.

If you include ShowAlternatives, you must also include MaxAlternatives, which is the maximum number of alternative transcriptions you want Amazon Transcribe to generate.

For more information, see Alternative transcriptions.

$sel:showSpeakerLabels:Settings', settings_showSpeakerLabels - Enables speaker partitioning (diarization) in your transcription output. Speaker partitioning labels the speech from individual speakers in your media file.

If you enable ShowSpeakerLabels in your request, you must also include MaxSpeakerLabels.

You can't include both ShowSpeakerLabels and ChannelIdentification in the same request. Including both parameters returns a BadRequestException.

For more information, see Partitioning speakers (diarization).

$sel:vocabularyFilterMethod:Settings', settings_vocabularyFilterMethod - Specify how you want your custom vocabulary filter applied to your transcript.

To replace words with ***, choose mask.

To delete words, choose remove.

To flag words without changing them, choose tag.

$sel:vocabularyFilterName:Settings', settings_vocabularyFilterName - The name of the custom vocabulary filter you want to use in your transcription job request. This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account.

Note that if you include VocabularyFilterName in your request, you must also include VocabularyFilterMethod.

$sel:vocabularyName:Settings', settings_vocabularyName - The name of the custom vocabulary you want to use in your transcription job request. This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account.

Subtitles

data Subtitles Source #

Generate subtitles for your media file with your transcription request.

You can choose a start index of 0 or 1, and you can specify either WebVTT or SubRip (or both) as your output format.

Note that your subtitle files are placed in the same location as your transcription output.

See: newSubtitles smart constructor.

Instances

Instances details
ToJSON Subtitles Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Subtitles

Generic Subtitles Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Subtitles

Associated Types

type Rep Subtitles :: Type -> Type #

Read Subtitles Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Subtitles

Show Subtitles Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Subtitles

NFData Subtitles Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Subtitles

Methods

rnf :: Subtitles -> () #

Eq Subtitles Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Subtitles

Hashable Subtitles Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Subtitles

type Rep Subtitles Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Subtitles

type Rep Subtitles = D1 ('MetaData "Subtitles" "Amazonka.Transcribe.Types.Subtitles" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "Subtitles'" 'PrefixI 'True) (S1 ('MetaSel ('Just "formats") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [SubtitleFormat])) :*: S1 ('MetaSel ('Just "outputStartIndex") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))))

newSubtitles :: Subtitles Source #

Create a value of Subtitles 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:formats:Subtitles', subtitles_formats - Specify the output format for your subtitle file; if you select both WebVTT (vtt) and SubRip (srt) formats, two output files are generated.

$sel:outputStartIndex:Subtitles', subtitles_outputStartIndex - Specify the starting value that is assigned to the first subtitle segment.

The default start index for Amazon Transcribe is 0, which differs from the more widely used standard of 1. If you're uncertain which value to use, we recommend choosing 1, as this may improve compatibility with other services.

SubtitlesOutput

data SubtitlesOutput Source #

Provides information about your subtitle file, including format, start index, and Amazon S3 location.

See: newSubtitlesOutput smart constructor.

Instances

Instances details
FromJSON SubtitlesOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitlesOutput

Generic SubtitlesOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitlesOutput

Associated Types

type Rep SubtitlesOutput :: Type -> Type #

Read SubtitlesOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitlesOutput

Show SubtitlesOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitlesOutput

NFData SubtitlesOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitlesOutput

Methods

rnf :: SubtitlesOutput -> () #

Eq SubtitlesOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitlesOutput

Hashable SubtitlesOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitlesOutput

type Rep SubtitlesOutput Source # 
Instance details

Defined in Amazonka.Transcribe.Types.SubtitlesOutput

type Rep SubtitlesOutput = D1 ('MetaData "SubtitlesOutput" "Amazonka.Transcribe.Types.SubtitlesOutput" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "SubtitlesOutput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "formats") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [SubtitleFormat])) :*: (S1 ('MetaSel ('Just "outputStartIndex") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "subtitleFileUris") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])))))

newSubtitlesOutput :: SubtitlesOutput Source #

Create a value of SubtitlesOutput 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:formats:SubtitlesOutput', subtitlesOutput_formats - Provides the format of your subtitle files. If your request included both WebVTT (vtt) and SubRip (srt) formats, both formats are shown.

$sel:outputStartIndex:SubtitlesOutput', subtitlesOutput_outputStartIndex - Provides the start index value for your subtitle files. If you did not specify a value in your request, the default value of 0 is used.

$sel:subtitleFileUris:SubtitlesOutput', subtitlesOutput_subtitleFileUris - The Amazon S3 location of your transcript. You can use this URI to access or download your subtitle file. Your subtitle file is stored in the same location as your transcript. If you specified both WebVTT and SubRip subtitle formats, two URIs are provided.

If you included OutputBucketName in your transcription job request, this is the URI of that bucket. If you also included OutputKey in your request, your output is located in the path you specified in your request.

If you didn't include OutputBucketName in your transcription job request, your subtitle file is stored in a service-managed bucket, and TranscriptFileUri provides you with a temporary URI you can use for secure access to your subtitle file.

Temporary URIs for service-managed Amazon S3 buckets are only valid for 15 minutes. If you get an AccesDenied error, you can get a new temporary URI by running a GetTranscriptionJob or ListTranscriptionJob request.

Tag

data Tag Source #

Adds metadata, in the form of a key:value pair, to the specified resource.

For example, you could add the tag Department:Sales to a resource to indicate that it pertains to your organization's sales department. You can also use tags for tag-based access control.

To learn more about tagging, see Tagging resources.

See: newTag smart constructor.

Constructors

Tag' Text Text 

Instances

Instances details
FromJSON Tag Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Tag

ToJSON Tag Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Tag

Generic Tag Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Tag

Associated Types

type Rep Tag :: Type -> Type #

Methods

from :: Tag -> Rep Tag x #

to :: Rep Tag x -> Tag #

Read Tag Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Tag

Show Tag Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Tag

Methods

showsPrec :: Int -> Tag -> ShowS #

show :: Tag -> String #

showList :: [Tag] -> ShowS #

NFData Tag Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Tag

Methods

rnf :: Tag -> () #

Eq Tag Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Tag

Methods

(==) :: Tag -> Tag -> Bool #

(/=) :: Tag -> Tag -> Bool #

Hashable Tag Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Tag

Methods

hashWithSalt :: Int -> Tag -> Int #

hash :: Tag -> Int #

type Rep Tag Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Tag

type Rep Tag = D1 ('MetaData "Tag" "Amazonka.Transcribe.Types.Tag" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "Tag'" 'PrefixI 'True) (S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newTag Source #

Create a value of Tag 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:key:Tag', tag_key - The first part of a key:value pair that forms a tag associated with a given resource. For example, in the tag Department:Sales, the key is 'Department'.

$sel:value:Tag', tag_value - The second part of a key:value pair that forms a tag associated with a given resource. For example, in the tag Department:Sales, the value is 'Sales'.

Note that you can set the value of a tag to an empty string, but you can't set the value of a tag to null. Omitting the tag value is the same as using an empty string.

Transcript

data Transcript Source #

Provides you with the Amazon S3 URI you can use to access your transcript.

See: newTranscript smart constructor.

Constructors

Transcript' (Maybe Text) (Maybe Text) 

Instances

Instances details
FromJSON Transcript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Transcript

Generic Transcript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Transcript

Associated Types

type Rep Transcript :: Type -> Type #

Read Transcript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Transcript

Show Transcript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Transcript

NFData Transcript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Transcript

Methods

rnf :: Transcript -> () #

Eq Transcript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Transcript

Hashable Transcript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Transcript

type Rep Transcript Source # 
Instance details

Defined in Amazonka.Transcribe.Types.Transcript

type Rep Transcript = D1 ('MetaData "Transcript" "Amazonka.Transcribe.Types.Transcript" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "Transcript'" 'PrefixI 'True) (S1 ('MetaSel ('Just "redactedTranscriptFileUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "transcriptFileUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newTranscript :: Transcript Source #

Create a value of Transcript 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:redactedTranscriptFileUri:Transcript', transcript_redactedTranscriptFileUri - The Amazon S3 location of your redacted transcript. You can use this URI to access or download your transcript.

If you included OutputBucketName in your transcription job request, this is the URI of that bucket. If you also included OutputKey in your request, your output is located in the path you specified in your request.

If you didn't include OutputBucketName in your transcription job request, your transcript is stored in a service-managed bucket, and RedactedTranscriptFileUri provides you with a temporary URI you can use for secure access to your transcript.

Temporary URIs for service-managed Amazon S3 buckets are only valid for 15 minutes. If you get an AccesDenied error, you can get a new temporary URI by running a GetTranscriptionJob or ListTranscriptionJob request.

$sel:transcriptFileUri:Transcript', transcript_transcriptFileUri - The Amazon S3 location of your transcript. You can use this URI to access or download your transcript.

If you included OutputBucketName in your transcription job request, this is the URI of that bucket. If you also included OutputKey in your request, your output is located in the path you specified in your request.

If you didn't include OutputBucketName in your transcription job request, your transcript is stored in a service-managed bucket, and TranscriptFileUri provides you with a temporary URI you can use for secure access to your transcript.

Temporary URIs for service-managed Amazon S3 buckets are only valid for 15 minutes. If you get an AccesDenied error, you can get a new temporary URI by running a GetTranscriptionJob or ListTranscriptionJob request.

TranscriptFilter

data TranscriptFilter Source #

Flag the presence or absence of specific words or phrases detected in your Call Analytics transcription output.

Rules using TranscriptFilter are designed to match:

  • Custom words or phrases spoken by the agent, the customer, or both
  • Custom words or phrases not spoken by the agent, the customer, or either
  • Custom words or phrases that occur at a specific time frame

See Rule criteria for batch categories and Rule criteria for streaming categories for usage examples.

See: newTranscriptFilter smart constructor.

Instances

Instances details
FromJSON TranscriptFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilter

ToJSON TranscriptFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilter

Generic TranscriptFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilter

Associated Types

type Rep TranscriptFilter :: Type -> Type #

Read TranscriptFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilter

Show TranscriptFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilter

NFData TranscriptFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilter

Methods

rnf :: TranscriptFilter -> () #

Eq TranscriptFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilter

Hashable TranscriptFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilter

type Rep TranscriptFilter Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptFilter

type Rep TranscriptFilter = D1 ('MetaData "TranscriptFilter" "Amazonka.Transcribe.Types.TranscriptFilter" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "TranscriptFilter'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "absoluteTimeRange") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AbsoluteTimeRange)) :*: (S1 ('MetaSel ('Just "negate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "participantRole") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ParticipantRole)))) :*: (S1 ('MetaSel ('Just "relativeTimeRange") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RelativeTimeRange)) :*: (S1 ('MetaSel ('Just "transcriptFilterType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TranscriptFilterType) :*: S1 ('MetaSel ('Just "targets") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text))))))

newTranscriptFilter Source #

Create a value of TranscriptFilter 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:absoluteTimeRange:TranscriptFilter', transcriptFilter_absoluteTimeRange - Makes it possible to specify a time range (in milliseconds) in your audio, during which you want to search for the specified key words or phrases. See for more detail.

$sel:negate:TranscriptFilter', transcriptFilter_negate - Set to TRUE to flag the absence of the phrase that you specified in your request. Set to FALSE to flag the presence of the phrase that you specified in your request.

$sel:participantRole:TranscriptFilter', transcriptFilter_participantRole - Specify the participant that you want to flag. Omitting this parameter is equivalent to specifying both participants.

$sel:relativeTimeRange:TranscriptFilter', transcriptFilter_relativeTimeRange - Makes it possible to specify a time range (in percentage) in your media file, during which you want to search for the specified key words or phrases. See for more detail.

$sel:transcriptFilterType:TranscriptFilter', transcriptFilter_transcriptFilterType - Flag the presence or absence of an exact match to the phrases that you specify. For example, if you specify the phrase "speak to a manager" as your Targets value, only that exact phrase is flagged.

Note that semantic matching is not supported. For example, if your customer says "speak to the manager", instead of "speak to a manager", your content is not flagged.

$sel:targets:TranscriptFilter', transcriptFilter_targets - Specify the phrases that you want to flag.

TranscriptionJob

data TranscriptionJob Source #

Provides detailed information about a transcription job.

To view the status of the specified transcription job, check the TranscriptionJobStatus field. If the status is COMPLETED, the job is finished and you can find the results at the location specified in TranscriptFileUri. If the status is FAILED, FailureReason provides details on why your transcription job failed.

If you enabled content redaction, the redacted transcript can be found at the location specified in RedactedTranscriptFileUri.

See: newTranscriptionJob smart constructor.

Instances

Instances details
FromJSON TranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJob

Generic TranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJob

Associated Types

type Rep TranscriptionJob :: Type -> Type #

Read TranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJob

Show TranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJob

NFData TranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJob

Methods

rnf :: TranscriptionJob -> () #

Eq TranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJob

Hashable TranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJob

type Rep TranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJob

type Rep TranscriptionJob = D1 ('MetaData "TranscriptionJob" "Amazonka.Transcribe.Types.TranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "TranscriptionJob'" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "completionTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "contentRedaction") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ContentRedaction))) :*: (S1 ('MetaSel ('Just "creationTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "failureReason") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "identifiedLanguageScore") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double))))) :*: ((S1 ('MetaSel ('Just "identifyLanguage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "identifyMultipleLanguages") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "jobExecutionSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe JobExecutionSettings)))) :*: (S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode)) :*: (S1 ('MetaSel ('Just "languageCodes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [LanguageCodeItem])) :*: S1 ('MetaSel ('Just "languageIdSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap LanguageCode LanguageIdSettings))))))) :*: (((S1 ('MetaSel ('Just "languageOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty LanguageCode))) :*: (S1 ('MetaSel ('Just "media") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Media)) :*: S1 ('MetaSel ('Just "mediaFormat") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe MediaFormat)))) :*: (S1 ('MetaSel ('Just "mediaSampleRateHertz") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "modelSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelSettings)) :*: S1 ('MetaSel ('Just "settings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Settings))))) :*: ((S1 ('MetaSel ('Just "startTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "subtitles") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SubtitlesOutput)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Tag))))) :*: (S1 ('MetaSel ('Just "transcript") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Transcript)) :*: (S1 ('MetaSel ('Just "transcriptionJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "transcriptionJobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TranscriptionJobStatus))))))))

newTranscriptionJob :: TranscriptionJob Source #

Create a value of TranscriptionJob 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:completionTime:TranscriptionJob', transcriptionJob_completionTime - The date and time the specified transcription job finished processing.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:33:13.922000-07:00 represents a transcription job that started processing at 12:33 PM UTC-7 on May 4, 2022.

$sel:contentRedaction:TranscriptionJob', transcriptionJob_contentRedaction - Indicates whether redaction was enabled in your transcript.

$sel:creationTime:TranscriptionJob', transcriptionJob_creationTime - The date and time the specified transcription job request was made.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.

$sel:failureReason:TranscriptionJob', transcriptionJob_failureReason - If TranscriptionJobStatus is FAILED, FailureReason contains information about why the transcription job request failed.

The FailureReason field contains one of the following values:

  • Unsupported media format.

    The media format specified in MediaFormat isn't valid. Refer to MediaFormat for a list of supported formats.

  • The media format provided does not match the detected media format.

    The media format specified in MediaFormat doesn't match the format of the input file. Check the media format of your media file and correct the specified value.

  • Invalid sample rate for audio file.

    The sample rate specified in MediaSampleRateHertz isn't valid. The sample rate must be between 8,000 and 48,000 hertz.

  • The sample rate provided does not match the detected sample rate.

    The sample rate specified in MediaSampleRateHertz doesn't match the sample rate detected in your input media file. Check the sample rate of your media file and correct the specified value.

  • Invalid file size: file size too large.

    The size of your media file is larger than what Amazon Transcribe can process. For more information, refer to Guidelines and quotas.

  • Invalid number of channels: number of channels too large.

    Your audio contains more channels than Amazon Transcribe is able to process. For more information, refer to Guidelines and quotas.

$sel:identifiedLanguageScore:TranscriptionJob', transcriptionJob_identifiedLanguageScore - The confidence score associated with the language identified in your media file.

Confidence scores are values between 0 and 1; a larger value indicates a higher probability that the identified language correctly matches the language spoken in your media.

$sel:identifyLanguage:TranscriptionJob', transcriptionJob_identifyLanguage - Indicates whether automatic language identification was enabled (TRUE) for the specified transcription job.

$sel:identifyMultipleLanguages:TranscriptionJob', transcriptionJob_identifyMultipleLanguages - Indicates whether automatic multi-language identification was enabled (TRUE) for the specified transcription job.

$sel:jobExecutionSettings:TranscriptionJob', transcriptionJob_jobExecutionSettings - Provides information about how your transcription job was processed. This parameter shows if your request was queued and what data access role was used.

TranscriptionJob, transcriptionJob_languageCode - The language code used to create your transcription job. This parameter is used with single-language identification. For multi-language identification requests, refer to the plural version of this parameter, LanguageCodes.

$sel:languageCodes:TranscriptionJob', transcriptionJob_languageCodes - The language codes used to create your transcription job. This parameter is used with multi-language identification. For single-language identification requests, refer to the singular version of this parameter, LanguageCode.

$sel:languageIdSettings:TranscriptionJob', transcriptionJob_languageIdSettings - Provides the name and language of all custom language models, custom vocabularies, and custom vocabulary filters that you included in your request.

$sel:languageOptions:TranscriptionJob', transcriptionJob_languageOptions - Provides the language codes you specified in your request.

$sel:media:TranscriptionJob', transcriptionJob_media - Provides the Amazon S3 location of the media file you used in your request.

$sel:mediaFormat:TranscriptionJob', transcriptionJob_mediaFormat - The format of the input media file.

$sel:mediaSampleRateHertz:TranscriptionJob', transcriptionJob_mediaSampleRateHertz - The sample rate, in hertz, of the audio track in your input media file.

$sel:modelSettings:TranscriptionJob', transcriptionJob_modelSettings - Provides information on the custom language model you included in your request.

$sel:settings:TranscriptionJob', transcriptionJob_settings - Provides information on any additional settings that were included in your request. Additional settings include channel identification, alternative transcriptions, speaker partitioning, custom vocabularies, and custom vocabulary filters.

$sel:startTime:TranscriptionJob', transcriptionJob_startTime - The date and time the specified transcription job began processing.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.789000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.

$sel:subtitles:TranscriptionJob', transcriptionJob_subtitles - Indicates whether subtitles were generated with your transcription.

$sel:tags:TranscriptionJob', transcriptionJob_tags - The tags, each in the form of a key:value pair, assigned to the specified transcription job.

$sel:transcript:TranscriptionJob', transcriptionJob_transcript - Provides you with the Amazon S3 URI you can use to access your transcript.

$sel:transcriptionJobName:TranscriptionJob', transcriptionJob_transcriptionJobName - The name of the transcription job. Job names are case sensitive and must be unique within an Amazon Web Services account.

$sel:transcriptionJobStatus:TranscriptionJob', transcriptionJob_transcriptionJobStatus - Provides the status of the specified transcription job.

If the status is COMPLETED, the job is finished and you can find the results at the location specified in TranscriptFileUri (or RedactedTranscriptFileUri, if you requested transcript redaction). If the status is FAILED, FailureReason provides details on why your transcription job failed.

TranscriptionJobSummary

data TranscriptionJobSummary Source #

Provides detailed information about a specific transcription job.

See: newTranscriptionJobSummary smart constructor.

Instances

Instances details
FromJSON TranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobSummary

Generic TranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobSummary

Associated Types

type Rep TranscriptionJobSummary :: Type -> Type #

Read TranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobSummary

Show TranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobSummary

NFData TranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobSummary

Methods

rnf :: TranscriptionJobSummary -> () #

Eq TranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobSummary

Hashable TranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobSummary

type Rep TranscriptionJobSummary Source # 
Instance details

Defined in Amazonka.Transcribe.Types.TranscriptionJobSummary

type Rep TranscriptionJobSummary = D1 ('MetaData "TranscriptionJobSummary" "Amazonka.Transcribe.Types.TranscriptionJobSummary" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "TranscriptionJobSummary'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "completionTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "contentRedaction") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ContentRedaction)) :*: S1 ('MetaSel ('Just "creationTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 ('MetaSel ('Just "failureReason") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "identifiedLanguageScore") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double))) :*: (S1 ('MetaSel ('Just "identifyLanguage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "identifyMultipleLanguages") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))))) :*: ((S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode)) :*: (S1 ('MetaSel ('Just "languageCodes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [LanguageCodeItem])) :*: S1 ('MetaSel ('Just "modelSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelSettings)))) :*: ((S1 ('MetaSel ('Just "outputLocationType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe OutputLocationType)) :*: S1 ('MetaSel ('Just "startTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "transcriptionJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "transcriptionJobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TranscriptionJobStatus)))))))

newTranscriptionJobSummary :: TranscriptionJobSummary Source #

Create a value of TranscriptionJobSummary 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:completionTime:TranscriptionJobSummary', transcriptionJobSummary_completionTime - The date and time the specified transcription job finished processing.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:33:13.922000-07:00 represents a transcription job that started processing at 12:33 PM UTC-7 on May 4, 2022.

$sel:contentRedaction:TranscriptionJobSummary', transcriptionJobSummary_contentRedaction - The content redaction settings of the transcription job.

$sel:creationTime:TranscriptionJobSummary', transcriptionJobSummary_creationTime - The date and time the specified transcription job request was made.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.

$sel:failureReason:TranscriptionJobSummary', transcriptionJobSummary_failureReason - If TranscriptionJobStatus is FAILED, FailureReason contains information about why the transcription job failed. See also: Common Errors.

$sel:identifiedLanguageScore:TranscriptionJobSummary', transcriptionJobSummary_identifiedLanguageScore - The confidence score associated with the language identified in your media file.

Confidence scores are values between 0 and 1; a larger value indicates a higher probability that the identified language correctly matches the language spoken in your media.

$sel:identifyLanguage:TranscriptionJobSummary', transcriptionJobSummary_identifyLanguage - Indicates whether automatic language identification was enabled (TRUE) for the specified transcription job.

$sel:identifyMultipleLanguages:TranscriptionJobSummary', transcriptionJobSummary_identifyMultipleLanguages - Indicates whether automatic multi-language identification was enabled (TRUE) for the specified transcription job.

TranscriptionJobSummary, transcriptionJobSummary_languageCode - The language code used to create your transcription.

$sel:languageCodes:TranscriptionJobSummary', transcriptionJobSummary_languageCodes - The language codes used to create your transcription job. This parameter is used with multi-language identification. For single-language identification, the singular version of this parameter, LanguageCode, is present.

$sel:modelSettings:TranscriptionJobSummary', transcriptionJobSummary_modelSettings - Undocumented member.

$sel:outputLocationType:TranscriptionJobSummary', transcriptionJobSummary_outputLocationType - Indicates where the specified transcription output is stored.

If the value is CUSTOMER_BUCKET, the location is the Amazon S3 bucket you specified using the OutputBucketName parameter in your request. If you also included OutputKey in your request, your output is located in the path you specified in your request.

If the value is SERVICE_BUCKET, the location is a service-managed Amazon S3 bucket. To access a transcript stored in a service-managed bucket, use the URI shown in the TranscriptFileUri or RedactedTranscriptFileUri field.

$sel:startTime:TranscriptionJobSummary', transcriptionJobSummary_startTime - The date and time your transcription job began processing.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.789000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.

$sel:transcriptionJobName:TranscriptionJobSummary', transcriptionJobSummary_transcriptionJobName - The name of the transcription job. Job names are case sensitive and must be unique within an Amazon Web Services account.

$sel:transcriptionJobStatus:TranscriptionJobSummary', transcriptionJobSummary_transcriptionJobStatus - Provides the status of your transcription job.

If the status is COMPLETED, the job is finished and you can find the results at the location specified in TranscriptFileUri (or RedactedTranscriptFileUri, if you requested transcript redaction). If the status is FAILED, FailureReason provides details on why your transcription job failed.

VocabularyFilterInfo

data VocabularyFilterInfo Source #

Provides information about a custom vocabulary filter, including the language of the filter, when it was last modified, and its name.

See: newVocabularyFilterInfo smart constructor.

Instances

Instances details
FromJSON VocabularyFilterInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterInfo

Generic VocabularyFilterInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterInfo

Associated Types

type Rep VocabularyFilterInfo :: Type -> Type #

Read VocabularyFilterInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterInfo

Show VocabularyFilterInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterInfo

NFData VocabularyFilterInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterInfo

Methods

rnf :: VocabularyFilterInfo -> () #

Eq VocabularyFilterInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterInfo

Hashable VocabularyFilterInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterInfo

type Rep VocabularyFilterInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyFilterInfo

type Rep VocabularyFilterInfo = D1 ('MetaData "VocabularyFilterInfo" "Amazonka.Transcribe.Types.VocabularyFilterInfo" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "VocabularyFilterInfo'" 'PrefixI 'True) (S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode)) :*: (S1 ('MetaSel ('Just "lastModifiedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "vocabularyFilterName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newVocabularyFilterInfo :: VocabularyFilterInfo Source #

Create a value of VocabularyFilterInfo 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:languageCode:VocabularyFilterInfo', vocabularyFilterInfo_languageCode - The language code that represents the language of the entries in your vocabulary filter. Each custom vocabulary filter must contain terms in only one language.

A custom vocabulary filter can only be used to transcribe files in the same language as the filter. For example, if you create a custom vocabulary filter using US English (en-US), you can only apply this filter to files that contain English audio.

For a list of supported languages and their associated language codes, refer to the Supported languages table.

$sel:lastModifiedTime:VocabularyFilterInfo', vocabularyFilterInfo_lastModifiedTime - The date and time the specified custom vocabulary filter was last modified.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents 12:32 PM UTC-7 on May 4, 2022.

$sel:vocabularyFilterName:VocabularyFilterInfo', vocabularyFilterInfo_vocabularyFilterName - A unique name, chosen by you, for your custom vocabulary filter. This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account.

VocabularyInfo

data VocabularyInfo Source #

Provides information about a custom vocabulary, including the language of the custom vocabulary, when it was last modified, its name, and the processing state.

See: newVocabularyInfo smart constructor.

Instances

Instances details
FromJSON VocabularyInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyInfo

Generic VocabularyInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyInfo

Associated Types

type Rep VocabularyInfo :: Type -> Type #

Read VocabularyInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyInfo

Show VocabularyInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyInfo

NFData VocabularyInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyInfo

Methods

rnf :: VocabularyInfo -> () #

Eq VocabularyInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyInfo

Hashable VocabularyInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyInfo

type Rep VocabularyInfo Source # 
Instance details

Defined in Amazonka.Transcribe.Types.VocabularyInfo

type Rep VocabularyInfo = D1 ('MetaData "VocabularyInfo" "Amazonka.Transcribe.Types.VocabularyInfo" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "VocabularyInfo'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "languageCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LanguageCode)) :*: S1 ('MetaSel ('Just "lastModifiedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "vocabularyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "vocabularyState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VocabularyState)))))

newVocabularyInfo :: VocabularyInfo Source #

Create a value of VocabularyInfo 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:languageCode:VocabularyInfo', vocabularyInfo_languageCode - The language code used to create your custom vocabulary. Each custom vocabulary must contain terms in only one language.

A custom vocabulary can only be used to transcribe files in the same language as the custom vocabulary. For example, if you create a custom vocabulary using US English (en-US), you can only apply this custom vocabulary to files that contain English audio.

$sel:lastModifiedTime:VocabularyInfo', vocabularyInfo_lastModifiedTime - The date and time the specified custom vocabulary was last modified.

Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents 12:32 PM UTC-7 on May 4, 2022.

$sel:vocabularyName:VocabularyInfo', vocabularyInfo_vocabularyName - A unique name, chosen by you, for your custom vocabulary. This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account.

$sel:vocabularyState:VocabularyInfo', vocabularyInfo_vocabularyState - The processing state of your custom vocabulary. If the state is READY, you can use the custom vocabulary in a StartTranscriptionJob request.