interface TranscriptionJob
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transcribe.Events.AWSAPICallViaCloudTrail.TranscriptionJob |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstranscribe/events#AWSAPICallViaCloudTrail_TranscriptionJob |
Java | software.amazon.awscdk.mixins.preview.services.transcribe.events.AWSAPICallViaCloudTrail.TranscriptionJob |
Python | aws_cdk.mixins_preview.aws_transcribe.events.AWSAPICallViaCloudTrail.TranscriptionJob |
TypeScript | @aws-cdk/mixins-preview ยป aws_transcribe ยป events ยป AWSAPICallViaCloudTrail ยป TranscriptionJob |
Type definition for TranscriptionJob.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as transcribe_events } from '@aws-cdk/mixins-preview/aws-transcribe';
const transcriptionJob: transcribe_events.AWSAPICallViaCloudTrail.TranscriptionJob = {
creationTime: ['creationTime'],
languageCode: ['languageCode'],
media: {
mediaFileUri: ['mediaFileUri'],
},
mediaFormat: ['mediaFormat'],
mediaSampleRateHertz: ['mediaSampleRateHertz'],
settings: {
channelIdentification: ['channelIdentification'],
vocabularyName: ['vocabularyName'],
},
transcriptionJobName: ['transcriptionJobName'],
transcriptionJobStatus: ['transcriptionJobStatus'],
};
Properties
| Name | Type | Description |
|---|---|---|
| creation | string[] | creationTime property. |
| language | string[] | languageCode property. |
| media? | Media1 | media property. |
| media | string[] | mediaFormat property. |
| media | string[] | mediaSampleRateHertz property. |
| settings? | Settings1 | settings property. |
| transcription | string[] | transcriptionJobName property. |
| transcription | string[] | transcriptionJobStatus property. |
creationTime?
Type:
string[]
(optional, default: Do not filter on this field)
creationTime property.
Specify an array of string values to match this event if the actual value of creationTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
languageCode?
Type:
string[]
(optional, default: Do not filter on this field)
languageCode property.
Specify an array of string values to match this event if the actual value of languageCode is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
media?
Type:
Media1
(optional, default: Do not filter on this field)
media property.
Specify an array of string values to match this event if the actual value of media is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
mediaFormat?
Type:
string[]
(optional, default: Do not filter on this field)
mediaFormat property.
Specify an array of string values to match this event if the actual value of mediaFormat is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
mediaSampleRateHertz?
Type:
string[]
(optional, default: Do not filter on this field)
mediaSampleRateHertz property.
Specify an array of string values to match this event if the actual value of mediaSampleRateHertz is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
settings?
Type:
Settings1
(optional, default: Do not filter on this field)
settings property.
Specify an array of string values to match this event if the actual value of settings is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
transcriptionJobName?
Type:
string[]
(optional, default: Do not filter on this field)
transcriptionJobName property.
Specify an array of string values to match this event if the actual value of transcriptionJobName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
transcriptionJobStatus?
Type:
string[]
(optional, default: Do not filter on this field)
transcriptionJobStatus property.
Specify an array of string values to match this event if the actual value of transcriptionJobStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript