interface TranscribeJobStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transcribe.Events.TranscribeJobStateChange.TranscribeJobStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstranscribe/events#TranscribeJobStateChange_TranscribeJobStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.transcribe.events.TranscribeJobStateChange.TranscribeJobStateChangeProps |
Python | aws_cdk.mixins_preview.aws_transcribe.events.TranscribeJobStateChange.TranscribeJobStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_transcribe ยป events ยป TranscribeJobStateChange ยป TranscribeJobStateChangeProps |
Props type for aws.transcribe@TranscribeJobStateChange event.
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 transcribeJobStateChangeProps: transcribe_events.TranscribeJobStateChange.TranscribeJobStateChangeProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
transcriptionJobName: ['transcriptionJobName'],
transcriptionJobStatus: ['transcriptionJobStatus'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| transcription | string[] | TranscriptionJobName property. |
| transcription | string[] | TranscriptionJobStatus property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
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