interface CallAnalyticsSkippedFeature
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transcribe.Events.CallAnalyticsJobStateChange.CallAnalyticsSkippedFeature |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstranscribe/events#CallAnalyticsJobStateChange_CallAnalyticsSkippedFeature |
Java | software.amazon.awscdk.mixins.preview.services.transcribe.events.CallAnalyticsJobStateChange.CallAnalyticsSkippedFeature |
Python | aws_cdk.mixins_preview.aws_transcribe.events.CallAnalyticsJobStateChange.CallAnalyticsSkippedFeature |
TypeScript | @aws-cdk/mixins-preview ยป aws_transcribe ยป events ยป CallAnalyticsJobStateChange ยป CallAnalyticsSkippedFeature |
Type definition for CallAnalyticsSkippedFeature.
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 callAnalyticsSkippedFeature: transcribe_events.CallAnalyticsJobStateChange.CallAnalyticsSkippedFeature = {
feature: ['feature'],
message: ['message'],
reasonCode: ['reasonCode'],
};
Properties
| Name | Type | Description |
|---|---|---|
| feature? | string[] | feature property. |
| message? | string[] | message property. |
| reason | string[] | reasonCode property. |
feature?
Type:
string[]
(optional, default: Do not filter on this field)
feature property.
Specify an array of string values to match this event if the actual value of feature is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
message?
Type:
string[]
(optional, default: Do not filter on this field)
message property.
Specify an array of string values to match this event if the actual value of message is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
reasonCode?
Type:
string[]
(optional, default: Do not filter on this field)
reasonCode property.
Specify an array of string values to match this event if the actual value of reasonCode 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