{ "version":"2.0", "metadata":{ "apiVersion":"2017-10-26", "endpointPrefix":"transcribe", "jsonVersion":"1.1", "protocol":"json", "serviceFullName":"Amazon Transcribe Service", "signatureVersion":"v4", "signingName":"transcribe", "targetPrefix":"Transcribe", "uid":"transcribe-2017-10-26" }, "operations":{ "CreateVocabulary":{ "name":"CreateVocabulary", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"CreateVocabularyRequest"}, "output":{"shape":"CreateVocabularyResponse"}, "errors":[ {"shape":"BadRequestException"}, {"shape":"LimitExceededException"}, {"shape":"InternalFailureException"}, {"shape":"ConflictException"} ], "documentation":"

Creates a new custom vocabulary that you can use to change the way Amazon Transcribe handles transcription of an audio file.

" }, "DeleteVocabulary":{ "name":"DeleteVocabulary", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DeleteVocabularyRequest"}, "errors":[ {"shape":"NotFoundException"}, {"shape":"LimitExceededException"}, {"shape":"InternalFailureException"} ], "documentation":"

Deletes a vocabulary from Amazon Transcribe.

" }, "GetTranscriptionJob":{ "name":"GetTranscriptionJob", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"GetTranscriptionJobRequest"}, "output":{"shape":"GetTranscriptionJobResponse"}, "errors":[ {"shape":"BadRequestException"}, {"shape":"LimitExceededException"}, {"shape":"InternalFailureException"}, {"shape":"NotFoundException"} ], "documentation":"

Returns information about a transcription job. To see the status of the 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 the TranscriptionFileUri field.

" }, "GetVocabulary":{ "name":"GetVocabulary", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"GetVocabularyRequest"}, "output":{"shape":"GetVocabularyResponse"}, "errors":[ {"shape":"NotFoundException"}, {"shape":"LimitExceededException"}, {"shape":"InternalFailureException"}, {"shape":"BadRequestException"} ], "documentation":"

Gets information about a vocabulary.

" }, "ListTranscriptionJobs":{ "name":"ListTranscriptionJobs", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"ListTranscriptionJobsRequest"}, "output":{"shape":"ListTranscriptionJobsResponse"}, "errors":[ {"shape":"BadRequestException"}, {"shape":"LimitExceededException"}, {"shape":"InternalFailureException"} ], "documentation":"

Lists transcription jobs with the specified status.

" }, "ListVocabularies":{ "name":"ListVocabularies", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"ListVocabulariesRequest"}, "output":{"shape":"ListVocabulariesResponse"}, "errors":[ {"shape":"BadRequestException"}, {"shape":"LimitExceededException"}, {"shape":"InternalFailureException"} ], "documentation":"

Returns a list of vocabularies that match the specified criteria. If no criteria are specified, returns the entire list of vocabularies.

" }, "StartTranscriptionJob":{ "name":"StartTranscriptionJob", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"StartTranscriptionJobRequest"}, "output":{"shape":"StartTranscriptionJobResponse"}, "errors":[ {"shape":"BadRequestException"}, {"shape":"LimitExceededException"}, {"shape":"InternalFailureException"}, {"shape":"ConflictException"} ], "documentation":"

Starts an asynchronous job to transcribe speech to text.

" }, "UpdateVocabulary":{ "name":"UpdateVocabulary", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"UpdateVocabularyRequest"}, "output":{"shape":"UpdateVocabularyResponse"}, "errors":[ {"shape":"BadRequestException"}, {"shape":"LimitExceededException"}, {"shape":"InternalFailureException"}, {"shape":"NotFoundException"} ], "documentation":"

Updates an existing vocabulary with new values.

" } }, "shapes":{ "BadRequestException":{ "type":"structure", "members":{ "Message":{"shape":"FailureReason"} }, "documentation":"

Your request didn't pass one or more validation tests. For example, a name already exists when createing a resource or a name may not exist when getting a transcription job or custom vocabulary. See the exception Message field for more information.

", "exception":true }, "Boolean":{"type":"boolean"}, "ConflictException":{ "type":"structure", "members":{ "Message":{"shape":"String"} }, "documentation":"

The JobName field is a duplicate of a previously entered job name. Resend your request with a different name.

", "exception":true }, "CreateVocabularyRequest":{ "type":"structure", "required":[ "VocabularyName", "LanguageCode", "Phrases" ], "members":{ "VocabularyName":{ "shape":"VocabularyName", "documentation":"

The name of the vocabulary. The name must be unique within an AWS account. The name is case-sensitive.

" }, "LanguageCode":{ "shape":"LanguageCode", "documentation":"

The language code of the vocabulary entries.

" }, "Phrases":{ "shape":"Phrases", "documentation":"

An array of strings that contains the vocabulary entries.

" } } }, "CreateVocabularyResponse":{ "type":"structure", "members":{ "VocabularyName":{ "shape":"VocabularyName", "documentation":"

The name of the vocabulary.

" }, "LanguageCode":{ "shape":"LanguageCode", "documentation":"

The language code of the vocabulary entries.

" }, "VocabularyState":{ "shape":"VocabularyState", "documentation":"

The processing state of the vocabulary. When the VocabularyState field contains READY the vocabulary is ready to be used in a StartTranscriptionJob request.

" }, "LastModifiedTime":{ "shape":"DateTime", "documentation":"

The date and time that the vocabulary was created.

" }, "FailureReason":{ "shape":"FailureReason", "documentation":"

If the VocabularyState field is FAILED, this field contains information about why the job failed.

" } } }, "DateTime":{"type":"timestamp"}, "DeleteVocabularyRequest":{ "type":"structure", "required":["VocabularyName"], "members":{ "VocabularyName":{ "shape":"VocabularyName", "documentation":"

The name of the vocabulary to delete.

" } } }, "FailureReason":{"type":"string"}, "GetTranscriptionJobRequest":{ "type":"structure", "required":["TranscriptionJobName"], "members":{ "TranscriptionJobName":{ "shape":"TranscriptionJobName", "documentation":"

The name of the job.

" } } }, "GetTranscriptionJobResponse":{ "type":"structure", "members":{ "TranscriptionJob":{ "shape":"TranscriptionJob", "documentation":"

An object that contains the results of the transcription job.

" } } }, "GetVocabularyRequest":{ "type":"structure", "required":["VocabularyName"], "members":{ "VocabularyName":{ "shape":"VocabularyName", "documentation":"

The name of the vocabulary to return information about. The name is case-sensitive.

" } } }, "GetVocabularyResponse":{ "type":"structure", "members":{ "VocabularyName":{ "shape":"VocabularyName", "documentation":"

The name of the vocabulary to return.

" }, "LanguageCode":{ "shape":"LanguageCode", "documentation":"

The language code of the vocabulary entries.

" }, "VocabularyState":{ "shape":"VocabularyState", "documentation":"

The processing state of the vocabulary.

" }, "LastModifiedTime":{ "shape":"DateTime", "documentation":"

The date and time that the vocabulary was last modified.

" }, "FailureReason":{ "shape":"FailureReason", "documentation":"

If the VocabularyState field is FAILED, this field contains information about why the job failed.

" }, "DownloadUri":{ "shape":"Uri", "documentation":"

The S3 location where the vocabulary is stored. Use this URI to get the contents of the vocabulary. The URI is available for a limited time.

" } } }, "InternalFailureException":{ "type":"structure", "members":{ "Message":{"shape":"String"} }, "documentation":"

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

", "exception":true, "fault":true }, "LanguageCode":{ "type":"string", "enum":[ "en-US", "es-US" ] }, "LimitExceededException":{ "type":"structure", "members":{ "Message":{"shape":"String"} }, "documentation":"

Either you have sent too many requests or your input file is too long. Wait before you resend your request, or use a smaller file and resend the request.

", "exception":true }, "ListTranscriptionJobsRequest":{ "type":"structure", "members":{ "Status":{ "shape":"TranscriptionJobStatus", "documentation":"

When specified, returns only transcription jobs with the specified status.

" }, "JobNameContains":{ "shape":"TranscriptionJobName", "documentation":"

When specified, the jobs returned in the list are limited to jobs whose name contains the specified string.

" }, "NextToken":{ "shape":"NextToken", "documentation":"

If the result of the previous request to ListTranscriptionJobs was truncated, include the NextToken to fetch the next set of jobs.

" }, "MaxResults":{ "shape":"MaxResults", "documentation":"

The maximum number of jobs to return in the response. If there are fewer results in the list, this response contains only the actual results.

" } } }, "ListTranscriptionJobsResponse":{ "type":"structure", "members":{ "Status":{ "shape":"TranscriptionJobStatus", "documentation":"

The requested status of the jobs returned.

" }, "NextToken":{ "shape":"NextToken", "documentation":"

The ListTranscriptionJobs operation returns a page of jobs at a time. The maximum size of the page is set by the MaxResults parameter. If there are more jobs in the list than the page size, Amazon Transcribe returns the NextPage token. Include the token in the next request to the ListTranscriptionJobs operation to return in the next page of jobs.

" }, "TranscriptionJobSummaries":{ "shape":"TranscriptionJobSummaries", "documentation":"

A list of objects containing summary information for a transcription job.

" } } }, "ListVocabulariesRequest":{ "type":"structure", "members":{ "NextToken":{ "shape":"NextToken", "documentation":"

If the result of the previous request to ListVocabularies was truncated, include the NextToken to fetch the next set of jobs.

" }, "MaxResults":{ "shape":"MaxResults", "documentation":"

The maximum number of vocabularies to return in the response. If there are fewer results in the list, this response contains only the actual results.

" }, "StateEquals":{ "shape":"VocabularyState", "documentation":"

When specified, only returns vocabularies with the VocabularyState field equal to the specified state.

" }, "NameContains":{ "shape":"VocabularyName", "documentation":"

When specified, the vocabularies returned in the list are limited to vocabularies whose name contains the specified string. The search is case-insensitive, ListVocabularies will return both \"vocabularyname\" and \"VocabularyName\" in the response list.

" } } }, "ListVocabulariesResponse":{ "type":"structure", "members":{ "Status":{ "shape":"TranscriptionJobStatus", "documentation":"

The requested vocabulary state.

" }, "NextToken":{ "shape":"NextToken", "documentation":"

The ListVocabularies operation returns a page of vocabularies at a time. The maximum size of the page is set by the MaxResults parameter. If there are more jobs in the list than the page size, Amazon Transcribe returns the NextPage token. Include the token in the next request to the ListVocabularies operation to return in the next page of jobs.

" }, "Vocabularies":{ "shape":"Vocabularies", "documentation":"

A list of objects that describe the vocabularies that match the search criteria in the request.

" } } }, "MaxResults":{ "type":"integer", "max":100, "min":1 }, "MaxSpeakers":{ "type":"integer", "max":10, "min":2 }, "Media":{ "type":"structure", "members":{ "MediaFileUri":{ "shape":"Uri", "documentation":"

The S3 location of the input media file. The URI must be in the same region as the API endpoint that you are calling. The general form is:

https://<aws-region>.amazonaws.com/<bucket-name>/<keyprefix>/<objectkey>

For example:

https://s3-us-east-1.amazonaws.com/examplebucket/example.mp4

https://s3-us-east-1.amazonaws.com/examplebucket/mediadocs/example.mp4

For more information about S3 object names, see Object Keys in the Amazon S3 Developer Guide.

" } }, "documentation":"

Describes the input media file in a transcription request.

" }, "MediaFormat":{ "type":"string", "enum":[ "mp3", "mp4", "wav", "flac" ] }, "MediaSampleRateHertz":{ "type":"integer", "max":48000, "min":8000 }, "NextToken":{ "type":"string", "max":8192 }, "NotFoundException":{ "type":"structure", "members":{ "Message":{"shape":"String"} }, "documentation":"

We can't find the requested transcription job or custom vocabulary. Check the name and try your request again.

", "exception":true }, "Phrase":{ "type":"string", "max":256, "min":0 }, "Phrases":{ "type":"list", "member":{"shape":"Phrase"} }, "Settings":{ "type":"structure", "members":{ "VocabularyName":{ "shape":"VocabularyName", "documentation":"

The name of a vocabulary to use when processing the transcription job.

" }, "ShowSpeakerLabels":{ "shape":"Boolean", "documentation":"

Determines whether the transcription job should use speaker recognition to identify different speakers in the input audio. If you set the ShowSpeakerLabels field to true, you must also set the maximum number of speaker labels MaxSpeakerLabels field.

" }, "MaxSpeakerLabels":{ "shape":"MaxSpeakers", "documentation":"

The maximum number of speakers to identify in the input audio. If there are more speakers in the audio than this number, multiple speakers will be identified as a single speaker. If you specify the MaxSpeakerLabels field, you must set the ShowSpeakerLabels field to true.

" } }, "documentation":"

Provides optional settings for the StartTranscriptionJob operation.

" }, "StartTranscriptionJobRequest":{ "type":"structure", "required":[ "TranscriptionJobName", "LanguageCode", "MediaFormat", "Media" ], "members":{ "TranscriptionJobName":{ "shape":"TranscriptionJobName", "documentation":"

The name of the job. The name must be unique within an AWS account.

" }, "LanguageCode":{ "shape":"LanguageCode", "documentation":"

The language code for the language used in the input media file.

" }, "MediaSampleRateHertz":{ "shape":"MediaSampleRateHertz", "documentation":"

The sample rate, in Hertz, of the audio track in the input media file.

" }, "MediaFormat":{ "shape":"MediaFormat", "documentation":"

The format of the input media file.

" }, "Media":{ "shape":"Media", "documentation":"

An object that describes the input media for a transcription job.

" }, "Settings":{ "shape":"Settings", "documentation":"

A Settings object that provides optional settings for a transcription job.

" } } }, "StartTranscriptionJobResponse":{ "type":"structure", "members":{ "TranscriptionJob":{ "shape":"TranscriptionJob", "documentation":"

An object containing details of the asynchronous transcription job.

" } } }, "String":{"type":"string"}, "Transcript":{ "type":"structure", "members":{ "TranscriptFileUri":{ "shape":"Uri", "documentation":"

The S3 location where the transcription result is stored. Use this URI to access the results of the transcription job.

" } }, "documentation":"

Describes the output of a transcription job.

" }, "TranscriptionJob":{ "type":"structure", "members":{ "TranscriptionJobName":{ "shape":"TranscriptionJobName", "documentation":"

A name to identify the transcription job.

" }, "TranscriptionJobStatus":{ "shape":"TranscriptionJobStatus", "documentation":"

The status of the transcription job.

" }, "LanguageCode":{ "shape":"LanguageCode", "documentation":"

The language code for the input speech.

" }, "MediaSampleRateHertz":{ "shape":"MediaSampleRateHertz", "documentation":"

The sample rate, in Hertz, of the audio track in the input media file.

" }, "MediaFormat":{ "shape":"MediaFormat", "documentation":"

The format of the input media file.

" }, "Media":{ "shape":"Media", "documentation":"

An object that describes the input media for a transcription job.

" }, "Transcript":{ "shape":"Transcript", "documentation":"

An object that describes the output of the transcription job.

" }, "CreationTime":{ "shape":"DateTime", "documentation":"

Timestamp of the date and time that the job was created.

" }, "CompletionTime":{ "shape":"DateTime", "documentation":"

Timestamp of the date and time that the job completed.

" }, "FailureReason":{ "shape":"FailureReason", "documentation":"

If the TranscriptionJobStatus field is FAILED, this field contains information about why the job failed.

" }, "Settings":{ "shape":"Settings", "documentation":"

Optional settings for the transcription job.

" } }, "documentation":"

Describes an asynchronous transcription job that was created with the StartTranscriptionJob operation.

" }, "TranscriptionJobName":{ "type":"string", "max":200, "min":1, "pattern":"^[0-9a-zA-Z._-]+" }, "TranscriptionJobStatus":{ "type":"string", "enum":[ "IN_PROGRESS", "FAILED", "COMPLETED" ] }, "TranscriptionJobSummaries":{ "type":"list", "member":{"shape":"TranscriptionJobSummary"} }, "TranscriptionJobSummary":{ "type":"structure", "members":{ "TranscriptionJobName":{ "shape":"TranscriptionJobName", "documentation":"

The name assigned to the transcription job when it was created.

" }, "CreationTime":{ "shape":"DateTime", "documentation":"

Timestamp of the date and time that the job was created.

" }, "CompletionTime":{ "shape":"DateTime", "documentation":"

Timestamp of the date and time that the job completed.

" }, "LanguageCode":{ "shape":"LanguageCode", "documentation":"

The language code for the input speech.

" }, "TranscriptionJobStatus":{ "shape":"TranscriptionJobStatus", "documentation":"

The status of the transcription job. When the status is COMPLETED, use the GetTranscriptionJob operation to get the results of the transcription.

" }, "FailureReason":{ "shape":"FailureReason", "documentation":"

If the TranscriptionJobStatus field is FAILED, this field contains a description of the error.

" } }, "documentation":"

Provides a summary of information about a transcription job.

" }, "UpdateVocabularyRequest":{ "type":"structure", "required":[ "VocabularyName", "LanguageCode", "Phrases" ], "members":{ "VocabularyName":{ "shape":"VocabularyName", "documentation":"

The name of the vocabulary to update. The name is case-sensitive.

" }, "LanguageCode":{ "shape":"LanguageCode", "documentation":"

The language code of the vocabulary entries.

" }, "Phrases":{ "shape":"Phrases", "documentation":"

An array of strings containing the vocabulary entries.

" } } }, "UpdateVocabularyResponse":{ "type":"structure", "members":{ "VocabularyName":{ "shape":"VocabularyName", "documentation":"

The name of the vocabulary that was updated.

" }, "LanguageCode":{ "shape":"LanguageCode", "documentation":"

The language code of the vocabulary entries.

" }, "LastModifiedTime":{ "shape":"DateTime", "documentation":"

The date and time that the vocabulary was updated.

" }, "VocabularyState":{ "shape":"VocabularyState", "documentation":"

The processing state of the vocabulary. When the VocabularyState field contains READY the vocabulary is ready to be used in a StartTranscriptionJob request.

" } } }, "Uri":{ "type":"string", "max":2000, "min":1 }, "Vocabularies":{ "type":"list", "member":{"shape":"VocabularyInfo"} }, "VocabularyInfo":{ "type":"structure", "members":{ "VocabularyName":{ "shape":"VocabularyName", "documentation":"

The name of the vocabulary.

" }, "LanguageCode":{ "shape":"LanguageCode", "documentation":"

The language code of the vocabulary entries.

" }, "LastModifiedTime":{ "shape":"DateTime", "documentation":"

The date and time that the vocabulary was last modified.

" }, "VocabularyState":{ "shape":"VocabularyState", "documentation":"

The processing state of the vocabulary. If the state is READY you can use the vocabulary in a StartTranscriptionJob request.

" } }, "documentation":"

Provides information about a custom vocabulary.

" }, "VocabularyName":{ "type":"string", "max":200, "min":1, "pattern":"^[0-9a-zA-Z._-]+" }, "VocabularyState":{ "type":"string", "enum":[ "PENDING", "READY", "FAILED" ] } }, "documentation":"

Operations and objects for transcribing speech to text.

" }