interface RequestParameters
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transcribe.Events.AWSAPICallViaCloudTrail.RequestParameters |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstranscribe/events#AWSAPICallViaCloudTrail_RequestParameters |
Java | software.amazon.awscdk.mixins.preview.services.transcribe.events.AWSAPICallViaCloudTrail.RequestParameters |
Python | aws_cdk.mixins_preview.aws_transcribe.events.AWSAPICallViaCloudTrail.RequestParameters |
TypeScript | @aws-cdk/mixins-preview ยป aws_transcribe ยป events ยป AWSAPICallViaCloudTrail ยป RequestParameters |
Type definition for RequestParameters.
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 requestParameters: transcribe_events.AWSAPICallViaCloudTrail.RequestParameters = {
languageCode: ['languageCode'],
media: {
mediaFileUri: ['mediaFileUri'],
},
mediaFormat: ['mediaFormat'],
mediaSampleRateHertz: ['mediaSampleRateHertz'],
settings: {
channelIdentification: ['channelIdentification'],
vocabularyName: ['vocabularyName'],
},
transcriptionJobName: ['transcriptionJobName'],
vocabularyName: ['vocabularyName'],
};
Properties
| Name | Type | Description |
|---|---|---|
| language | string[] | languageCode property. |
| media? | Media | media property. |
| media | string[] | mediaFormat property. |
| media | string[] | mediaSampleRateHertz property. |
| settings? | Settings | settings property. |
| transcription | string[] | transcriptionJobName property. |
| vocabulary | string[] | vocabularyName 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.
media?
Type:
Media
(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:
Settings
(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.
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.

.NET
Go
Java
Python
TypeScript