interface CallAnalyticsJobStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transcribe.Events.CallAnalyticsJobStateChange.CallAnalyticsJobStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstranscribe/events#CallAnalyticsJobStateChange_CallAnalyticsJobStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.transcribe.events.CallAnalyticsJobStateChange.CallAnalyticsJobStateChangeProps |
Python | aws_cdk.mixins_preview.aws_transcribe.events.CallAnalyticsJobStateChange.CallAnalyticsJobStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_transcribe ยป events ยป CallAnalyticsJobStateChange ยป CallAnalyticsJobStateChangeProps |
Props type for aws.transcribe@CallAnalyticsJobStateChange 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 callAnalyticsJobStateChangeProps: transcribe_events.CallAnalyticsJobStateChange.CallAnalyticsJobStateChangeProps = {
analyticsJobDetails: {
skipped: [{
feature: ['feature'],
message: ['message'],
reasonCode: ['reasonCode'],
}],
},
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
jobName: ['jobName'],
jobStatus: ['jobStatus'],
};
Properties
| Name | Type | Description |
|---|---|---|
| analytics | Analytics | AnalyticsJobDetails property. |
| event | AWSEvent | EventBridge event metadata. |
| job | string[] | JobName property. |
| job | string[] | JobStatus property. |
analyticsJobDetails?
Type:
Analytics
(optional, default: Do not filter on this field)
AnalyticsJobDetails property.
Specify an array of string values to match this event if the actual value of AnalyticsJobDetails is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
jobName?
Type:
string[]
(optional, default: Do not filter on this field)
JobName property.
Specify an array of string values to match this event if the actual value of JobName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
jobStatus?
Type:
string[]
(optional, default: Do not filter on this field)
JobStatus property.
Specify an array of string values to match this event if the actual value of JobStatus 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