transcribeservice.d.ts
27.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {Service} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config';
interface Blob {}
declare class TranscribeService extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: TranscribeService.Types.ClientConfiguration)
config: Config & TranscribeService.Types.ClientConfiguration;
/**
* Creates a new custom vocabulary that you can use to change the way Amazon Transcribe handles transcription of an audio file.
*/
createVocabulary(params: TranscribeService.Types.CreateVocabularyRequest, callback?: (err: AWSError, data: TranscribeService.Types.CreateVocabularyResponse) => void): Request<TranscribeService.Types.CreateVocabularyResponse, AWSError>;
/**
* Creates a new custom vocabulary that you can use to change the way Amazon Transcribe handles transcription of an audio file.
*/
createVocabulary(callback?: (err: AWSError, data: TranscribeService.Types.CreateVocabularyResponse) => void): Request<TranscribeService.Types.CreateVocabularyResponse, AWSError>;
/**
* Deletes a previously submitted transcription job along with any other generated results such as the transcription, models, and so on.
*/
deleteTranscriptionJob(params: TranscribeService.Types.DeleteTranscriptionJobRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes a previously submitted transcription job along with any other generated results such as the transcription, models, and so on.
*/
deleteTranscriptionJob(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes a vocabulary from Amazon Transcribe.
*/
deleteVocabulary(params: TranscribeService.Types.DeleteVocabularyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes a vocabulary from Amazon Transcribe.
*/
deleteVocabulary(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* 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.
*/
getTranscriptionJob(params: TranscribeService.Types.GetTranscriptionJobRequest, callback?: (err: AWSError, data: TranscribeService.Types.GetTranscriptionJobResponse) => void): Request<TranscribeService.Types.GetTranscriptionJobResponse, AWSError>;
/**
* 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.
*/
getTranscriptionJob(callback?: (err: AWSError, data: TranscribeService.Types.GetTranscriptionJobResponse) => void): Request<TranscribeService.Types.GetTranscriptionJobResponse, AWSError>;
/**
* Gets information about a vocabulary.
*/
getVocabulary(params: TranscribeService.Types.GetVocabularyRequest, callback?: (err: AWSError, data: TranscribeService.Types.GetVocabularyResponse) => void): Request<TranscribeService.Types.GetVocabularyResponse, AWSError>;
/**
* Gets information about a vocabulary.
*/
getVocabulary(callback?: (err: AWSError, data: TranscribeService.Types.GetVocabularyResponse) => void): Request<TranscribeService.Types.GetVocabularyResponse, AWSError>;
/**
* Lists transcription jobs with the specified status.
*/
listTranscriptionJobs(params: TranscribeService.Types.ListTranscriptionJobsRequest, callback?: (err: AWSError, data: TranscribeService.Types.ListTranscriptionJobsResponse) => void): Request<TranscribeService.Types.ListTranscriptionJobsResponse, AWSError>;
/**
* Lists transcription jobs with the specified status.
*/
listTranscriptionJobs(callback?: (err: AWSError, data: TranscribeService.Types.ListTranscriptionJobsResponse) => void): Request<TranscribeService.Types.ListTranscriptionJobsResponse, AWSError>;
/**
* Returns a list of vocabularies that match the specified criteria. If no criteria are specified, returns the entire list of vocabularies.
*/
listVocabularies(params: TranscribeService.Types.ListVocabulariesRequest, callback?: (err: AWSError, data: TranscribeService.Types.ListVocabulariesResponse) => void): Request<TranscribeService.Types.ListVocabulariesResponse, AWSError>;
/**
* Returns a list of vocabularies that match the specified criteria. If no criteria are specified, returns the entire list of vocabularies.
*/
listVocabularies(callback?: (err: AWSError, data: TranscribeService.Types.ListVocabulariesResponse) => void): Request<TranscribeService.Types.ListVocabulariesResponse, AWSError>;
/**
* Starts an asynchronous job to transcribe speech to text.
*/
startTranscriptionJob(params: TranscribeService.Types.StartTranscriptionJobRequest, callback?: (err: AWSError, data: TranscribeService.Types.StartTranscriptionJobResponse) => void): Request<TranscribeService.Types.StartTranscriptionJobResponse, AWSError>;
/**
* Starts an asynchronous job to transcribe speech to text.
*/
startTranscriptionJob(callback?: (err: AWSError, data: TranscribeService.Types.StartTranscriptionJobResponse) => void): Request<TranscribeService.Types.StartTranscriptionJobResponse, AWSError>;
/**
* Updates an existing vocabulary with new values. The UpdateVocabulary operation overwrites all of the existing information with the values that you provide in the request.
*/
updateVocabulary(params: TranscribeService.Types.UpdateVocabularyRequest, callback?: (err: AWSError, data: TranscribeService.Types.UpdateVocabularyResponse) => void): Request<TranscribeService.Types.UpdateVocabularyResponse, AWSError>;
/**
* Updates an existing vocabulary with new values. The UpdateVocabulary operation overwrites all of the existing information with the values that you provide in the request.
*/
updateVocabulary(callback?: (err: AWSError, data: TranscribeService.Types.UpdateVocabularyResponse) => void): Request<TranscribeService.Types.UpdateVocabularyResponse, AWSError>;
}
declare namespace TranscribeService {
export type Boolean = boolean;
export interface CreateVocabularyRequest {
/**
* The name of the vocabulary. The name must be unique within an AWS account. The name is case-sensitive.
*/
VocabularyName: VocabularyName;
/**
* The language code of the vocabulary entries.
*/
LanguageCode: LanguageCode;
/**
* An array of strings that contains the vocabulary entries.
*/
Phrases?: Phrases;
/**
* The S3 location of the text file that contains the definition of the custom vocabulary. The URI must be in the same region as the API endpoint that you are calling. The general form is https://s3.<aws-region>.amazonaws.com/<bucket-name>/<keyprefix>/<objectkey> For example: https://s3.us-east-1.amazonaws.com/examplebucket/vocab.txt For more information about S3 object names, see Object Keys in the Amazon S3 Developer Guide. For more information about custom vocabularies, see Custom Vocabularies.
*/
VocabularyFileUri?: Uri;
}
export interface CreateVocabularyResponse {
/**
* The name of the vocabulary.
*/
VocabularyName?: VocabularyName;
/**
* The language code of the vocabulary entries.
*/
LanguageCode?: LanguageCode;
/**
* The processing state of the vocabulary. When the VocabularyState field contains READY the vocabulary is ready to be used in a StartTranscriptionJob request.
*/
VocabularyState?: VocabularyState;
/**
* The date and time that the vocabulary was created.
*/
LastModifiedTime?: DateTime;
/**
* If the VocabularyState field is FAILED, this field contains information about why the job failed.
*/
FailureReason?: FailureReason;
}
export type DateTime = Date;
export interface DeleteTranscriptionJobRequest {
/**
* The name of the transcription job to be deleted.
*/
TranscriptionJobName: TranscriptionJobName;
}
export interface DeleteVocabularyRequest {
/**
* The name of the vocabulary to delete.
*/
VocabularyName: VocabularyName;
}
export type FailureReason = string;
export interface GetTranscriptionJobRequest {
/**
* The name of the job.
*/
TranscriptionJobName: TranscriptionJobName;
}
export interface GetTranscriptionJobResponse {
/**
* An object that contains the results of the transcription job.
*/
TranscriptionJob?: TranscriptionJob;
}
export interface GetVocabularyRequest {
/**
* The name of the vocabulary to return information about. The name is case-sensitive.
*/
VocabularyName: VocabularyName;
}
export interface GetVocabularyResponse {
/**
* The name of the vocabulary to return.
*/
VocabularyName?: VocabularyName;
/**
* The language code of the vocabulary entries.
*/
LanguageCode?: LanguageCode;
/**
* The processing state of the vocabulary.
*/
VocabularyState?: VocabularyState;
/**
* The date and time that the vocabulary was last modified.
*/
LastModifiedTime?: DateTime;
/**
* If the VocabularyState field is FAILED, this field contains information about why the job failed.
*/
FailureReason?: FailureReason;
/**
* 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.
*/
DownloadUri?: Uri;
}
export type KMSKeyId = string;
export type LanguageCode = "en-US"|"es-US"|"en-AU"|"fr-CA"|"en-GB"|"de-DE"|"pt-BR"|"fr-FR"|"it-IT"|"ko-KR"|"es-ES"|"en-IN"|"hi-IN"|"ar-SA"|"ru-RU"|"zh-CN"|"nl-NL"|"id-ID"|"ta-IN"|"fa-IR"|"en-IE"|"en-AB"|"en-WL"|"pt-PT"|"te-IN"|"tr-TR"|"de-CH"|"he-IL"|"ms-MY"|"ja-JP"|"ar-AE"|string;
export interface ListTranscriptionJobsRequest {
/**
* When specified, returns only transcription jobs with the specified status. Jobs are ordered by creation date, with the newest jobs returned first. If you don’t specify a status, Amazon Transcribe returns all transcription jobs ordered by creation date.
*/
Status?: TranscriptionJobStatus;
/**
* When specified, the jobs returned in the list are limited to jobs whose name contains the specified string.
*/
JobNameContains?: TranscriptionJobName;
/**
* If the result of the previous request to ListTranscriptionJobs was truncated, include the NextToken to fetch the next set of jobs.
*/
NextToken?: NextToken;
/**
* 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.
*/
MaxResults?: MaxResults;
}
export interface ListTranscriptionJobsResponse {
/**
* The requested status of the jobs returned.
*/
Status?: TranscriptionJobStatus;
/**
* 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.
*/
NextToken?: NextToken;
/**
* A list of objects containing summary information for a transcription job.
*/
TranscriptionJobSummaries?: TranscriptionJobSummaries;
}
export interface ListVocabulariesRequest {
/**
* If the result of the previous request to ListVocabularies was truncated, include the NextToken to fetch the next set of jobs.
*/
NextToken?: NextToken;
/**
* 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.
*/
MaxResults?: MaxResults;
/**
* When specified, only returns vocabularies with the VocabularyState field equal to the specified state.
*/
StateEquals?: VocabularyState;
/**
* 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.
*/
NameContains?: VocabularyName;
}
export interface ListVocabulariesResponse {
/**
* The requested vocabulary state.
*/
Status?: TranscriptionJobStatus;
/**
* 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.
*/
NextToken?: NextToken;
/**
* A list of objects that describe the vocabularies that match the search criteria in the request.
*/
Vocabularies?: Vocabularies;
}
export type MaxAlternatives = number;
export type MaxResults = number;
export type MaxSpeakers = number;
export interface Media {
/**
* 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://s3.<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.
*/
MediaFileUri?: Uri;
}
export type MediaFormat = "mp3"|"mp4"|"wav"|"flac"|string;
export type MediaSampleRateHertz = number;
export type NextToken = string;
export type OutputBucketName = string;
export type OutputLocationType = "CUSTOMER_BUCKET"|"SERVICE_BUCKET"|string;
export type Phrase = string;
export type Phrases = Phrase[];
export interface Settings {
/**
* The name of a vocabulary to use when processing the transcription job.
*/
VocabularyName?: VocabularyName;
/**
* Determines whether the transcription job uses speaker recognition to identify different speakers in the input audio. Speaker recognition labels individual speakers in the audio file. If you set the ShowSpeakerLabels field to true, you must also set the maximum number of speaker labels MaxSpeakerLabels field. You can't set both ShowSpeakerLabels and ChannelIdentification in the same request. If you set both, your request returns a BadRequestException.
*/
ShowSpeakerLabels?: Boolean;
/**
* 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.
*/
MaxSpeakerLabels?: MaxSpeakers;
/**
* Instructs Amazon Transcribe to process each audio channel separately and then merge the transcription output of each channel into a single transcription. Amazon Transcribe also produces a transcription of each item detected on an audio channel, including the start time and end time of the item and alternative transcriptions of the item including the confidence that Amazon Transcribe has in the transcription. You can't set both ShowSpeakerLabels and ChannelIdentification in the same request. If you set both, your request returns a BadRequestException.
*/
ChannelIdentification?: Boolean;
/**
* Determines whether the transcription contains alternative transcriptions. If you set the ShowAlternatives field to true, you must also set the maximum number of alternatives to return in the MaxAlternatives field.
*/
ShowAlternatives?: Boolean;
/**
* The number of alternative transcriptions that the service should return. If you specify the MaxAlternatives field, you must set the ShowAlternatives field to true.
*/
MaxAlternatives?: MaxAlternatives;
}
export interface StartTranscriptionJobRequest {
/**
* The name of the job. Note that you can't use the strings "." or ".." by themselves as the job name. The name must also be unique within an AWS account.
*/
TranscriptionJobName: TranscriptionJobName;
/**
* The language code for the language used in the input media file.
*/
LanguageCode: LanguageCode;
/**
* The sample rate, in Hertz, of the audio track in the input media file. If you do not specify the media sample rate, Amazon Transcribe determines the sample rate. If you specify the sample rate, it must match the sample rate detected by Amazon Transcribe. In most cases, you should leave the MediaSampleRateHertz field blank and let Amazon Transcribe determine the sample rate.
*/
MediaSampleRateHertz?: MediaSampleRateHertz;
/**
* The format of the input media file.
*/
MediaFormat?: MediaFormat;
/**
* An object that describes the input media for a transcription job.
*/
Media: Media;
/**
* The location where the transcription is stored. If you set the OutputBucketName, Amazon Transcribe puts the transcription in the specified S3 bucket. When you call the GetTranscriptionJob operation, the operation returns this location in the TranscriptFileUri field. The S3 bucket must have permissions that allow Amazon Transcribe to put files in the bucket. For more information, see Permissions Required for IAM User Roles. You can specify an AWS Key Management Service (KMS) key to encrypt the output of your transcription using the OutputEncryptionKMSKeyId parameter. If you don't specify a KMS key, Amazon Transcribe uses the default Amazon S3 key for server-side encryption of transcripts that are placed in your S3 bucket. If you don't set the OutputBucketName, Amazon Transcribe generates a pre-signed URL, a shareable URL that provides secure access to your transcription, and returns it in the TranscriptFileUri field. Use this URL to download the transcription.
*/
OutputBucketName?: OutputBucketName;
/**
* The Amazon Resource Name (ARN) of the AWS Key Management Service (KMS) key used to encrypt the output of the transcription job. The user calling the StartTranscriptionJob operation must have permission to use the specified KMS key. You can use either of the following to identify a KMS key in the current account: KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab" KMS Key Alias: "alias/ExampleAlias" You can use either of the following to identify a KMS key in the current account or another account: Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:region:account ID:key/1234abcd-12ab-34cd-56ef-1234567890ab" ARN of a KMS Key Alias: "arn:aws:kms:region:account ID:alias/ExampleAlias" If you don't specify an encryption key, the output of the transcription job 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 in the OutputBucketName parameter.
*/
OutputEncryptionKMSKeyId?: KMSKeyId;
/**
* A Settings object that provides optional settings for a transcription job.
*/
Settings?: Settings;
}
export interface StartTranscriptionJobResponse {
/**
* An object containing details of the asynchronous transcription job.
*/
TranscriptionJob?: TranscriptionJob;
}
export interface Transcript {
/**
* The location where the transcription is stored. Use this URI to access the transcription. If you specified an S3 bucket in the OutputBucketName field when you created the job, this is the URI of that bucket. If you chose to store the transcription in Amazon Transcribe, this is a shareable URL that provides secure access to that location.
*/
TranscriptFileUri?: Uri;
}
export interface TranscriptionJob {
/**
* The name of the transcription job.
*/
TranscriptionJobName?: TranscriptionJobName;
/**
* The status of the transcription job.
*/
TranscriptionJobStatus?: TranscriptionJobStatus;
/**
* The language code for the input speech.
*/
LanguageCode?: LanguageCode;
/**
* The sample rate, in Hertz, of the audio track in the input media file.
*/
MediaSampleRateHertz?: MediaSampleRateHertz;
/**
* The format of the input media file.
*/
MediaFormat?: MediaFormat;
/**
* An object that describes the input media for the transcription job.
*/
Media?: Media;
/**
* An object that describes the output of the transcription job.
*/
Transcript?: Transcript;
/**
* A timestamp that shows when the job was created.
*/
CreationTime?: DateTime;
/**
* A timestamp that shows when the job was completed.
*/
CompletionTime?: DateTime;
/**
* If the TranscriptionJobStatus field is FAILED, this field contains information about why the job failed. The FailureReason field can contain one of the following values: Unsupported media format - The media format specified in the MediaFormat field of the request isn't valid. See the description of the MediaFormat field for a list of valid values. The media format provided does not match the detected media format - The media format of the audio file doesn't match the format specified in the MediaFormat field in the request. Check the media format of your media file and make sure that the two values match. Invalid sample rate for audio file - The sample rate specified in the MediaSampleRateHertz of the request isn't valid. The sample rate must be between 8000 and 48000 Hertz. The sample rate provided does not match the detected sample rate - The sample rate in the audio file doesn't match the sample rate specified in the MediaSampleRateHertz field in the request. Check the sample rate of your media file and make sure that the two values match. Invalid file size: file size too large - The size of your audio file is larger than Amazon Transcribe can process. For more information, see Limits in the Amazon Transcribe Developer Guide. Invalid number of channels: number of channels too large - Your audio contains more channels than Amazon Transcribe is configured to process. To request additional channels, see Amazon Transcribe Limits in the Amazon Web Services General Reference.
*/
FailureReason?: FailureReason;
/**
* Optional settings for the transcription job. Use these settings to turn on speaker recognition, to set the maximum number of speakers that should be identified and to specify a custom vocabulary to use when processing the transcription job.
*/
Settings?: Settings;
}
export type TranscriptionJobName = string;
export type TranscriptionJobStatus = "IN_PROGRESS"|"FAILED"|"COMPLETED"|string;
export type TranscriptionJobSummaries = TranscriptionJobSummary[];
export interface TranscriptionJobSummary {
/**
* The name of the transcription job.
*/
TranscriptionJobName?: TranscriptionJobName;
/**
* A timestamp that shows when the job was created.
*/
CreationTime?: DateTime;
/**
* A timestamp that shows when the job was completed.
*/
CompletionTime?: DateTime;
/**
* The language code for the input speech.
*/
LanguageCode?: LanguageCode;
/**
* The status of the transcription job. When the status is COMPLETED, use the GetTranscriptionJob operation to get the results of the transcription.
*/
TranscriptionJobStatus?: TranscriptionJobStatus;
/**
* If the TranscriptionJobStatus field is FAILED, a description of the error.
*/
FailureReason?: FailureReason;
/**
* Indicates the location of the output of the transcription job. If the value is CUSTOMER_BUCKET then the location is the S3 bucket specified in the outputBucketName field when the transcription job was started with the StartTranscriptionJob operation. If the value is SERVICE_BUCKET then the output is stored by Amazon Transcribe and can be retrieved using the URI in the GetTranscriptionJob response's TranscriptFileUri field.
*/
OutputLocationType?: OutputLocationType;
}
export interface UpdateVocabularyRequest {
/**
* The name of the vocabulary to update. The name is case-sensitive.
*/
VocabularyName: VocabularyName;
/**
* The language code of the vocabulary entries.
*/
LanguageCode: LanguageCode;
/**
* An array of strings containing the vocabulary entries.
*/
Phrases?: Phrases;
/**
* The S3 location of the text file that contains the definition of the custom vocabulary. The URI must be in the same region as the API endpoint that you are calling. The general form is https://s3.<aws-region>.amazonaws.com/<bucket-name>/<keyprefix>/<objectkey> For example: https://s3.us-east-1.amazonaws.com/examplebucket/vocab.txt For more information about S3 object names, see Object Keys in the Amazon S3 Developer Guide. For more information about custom vocabularies, see Custom Vocabularies.
*/
VocabularyFileUri?: Uri;
}
export interface UpdateVocabularyResponse {
/**
* The name of the vocabulary that was updated.
*/
VocabularyName?: VocabularyName;
/**
* The language code of the vocabulary entries.
*/
LanguageCode?: LanguageCode;
/**
* The date and time that the vocabulary was updated.
*/
LastModifiedTime?: DateTime;
/**
* The processing state of the vocabulary. When the VocabularyState field contains READY the vocabulary is ready to be used in a StartTranscriptionJob request.
*/
VocabularyState?: VocabularyState;
}
export type Uri = string;
export type Vocabularies = VocabularyInfo[];
export interface VocabularyInfo {
/**
* The name of the vocabulary.
*/
VocabularyName?: VocabularyName;
/**
* The language code of the vocabulary entries.
*/
LanguageCode?: LanguageCode;
/**
* The date and time that the vocabulary was last modified.
*/
LastModifiedTime?: DateTime;
/**
* The processing state of the vocabulary. If the state is READY you can use the vocabulary in a StartTranscriptionJob request.
*/
VocabularyState?: VocabularyState;
}
export type VocabularyName = string;
export type VocabularyState = "PENDING"|"READY"|"FAILED"|string;
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
export type apiVersion = "2017-10-26"|"latest"|string;
export interface ClientApiVersions {
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
apiVersion?: apiVersion;
}
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
/**
* Contains interfaces for use with the TranscribeService client.
*/
export import Types = TranscribeService;
}
export = TranscribeService;