interface ResponseElements
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transcribe.Events.AWSAPICallViaCloudTrail.ResponseElements |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstranscribe/events#AWSAPICallViaCloudTrail_ResponseElements |
Java | software.amazon.awscdk.mixins.preview.services.transcribe.events.AWSAPICallViaCloudTrail.ResponseElements |
Python | aws_cdk.mixins_preview.aws_transcribe.events.AWSAPICallViaCloudTrail.ResponseElements |
TypeScript | @aws-cdk/mixins-preview ยป aws_transcribe ยป events ยป AWSAPICallViaCloudTrail ยป ResponseElements |
Type definition for ResponseElements.
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 responseElements: transcribe_events.AWSAPICallViaCloudTrail.ResponseElements = {
languageCode: ['languageCode'],
transcriptionJob: {
creationTime: ['creationTime'],
languageCode: ['languageCode'],
media: {
mediaFileUri: ['mediaFileUri'],
},
mediaFormat: ['mediaFormat'],
mediaSampleRateHertz: ['mediaSampleRateHertz'],
settings: {
channelIdentification: ['channelIdentification'],
vocabularyName: ['vocabularyName'],
},
transcriptionJobName: ['transcriptionJobName'],
transcriptionJobStatus: ['transcriptionJobStatus'],
},
vocabularyName: ['vocabularyName'],
vocabularyState: ['vocabularyState'],
};
Properties
| Name | Type | Description |
|---|---|---|
| language | string[] | languageCode property. |
| transcription | Transcription | transcriptionJob property. |
| vocabulary | string[] | vocabularyName property. |
| vocabulary | string[] | vocabularyState property. |
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.
transcriptionJob?
Type:
Transcription
(optional, default: Do not filter on this field)
transcriptionJob property.
Specify an array of string values to match this event if the actual value of transcriptionJob is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
vocabularyName?
Type:
string[]
(optional, default: Do not filter on this field)
vocabularyName property.
Specify an array of string values to match this event if the actual value of vocabularyName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
vocabularyState?
Type:
string[]
(optional, default: Do not filter on this field)
vocabularyState property.
Specify an array of string values to match this event if the actual value of vocabularyState 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