interface EnrollmentAudioProgress
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VoiceID.Events.DomainEvents.VoiceIdStartSessionAction.EnrollmentAudioProgress |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvoiceid/events#DomainEvents_VoiceIdStartSessionAction_EnrollmentAudioProgress |
Java | software.amazon.awscdk.mixins.preview.services.voiceid.events.DomainEvents.VoiceIdStartSessionAction.EnrollmentAudioProgress |
Python | aws_cdk.mixins_preview.aws_voiceid.events.DomainEvents.VoiceIdStartSessionAction.EnrollmentAudioProgress |
TypeScript | @aws-cdk/mixins-preview ยป aws_voiceid ยป events ยป DomainEvents ยป VoiceIdStartSessionAction ยป EnrollmentAudioProgress |
Type definition for EnrollmentAudioProgress.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as voiceid_events } from '@aws-cdk/mixins-preview/aws-voiceid';
const enrollmentAudioProgress: voiceid_events.DomainEvents.VoiceIdStartSessionAction.EnrollmentAudioProgress = {
audioAggregationEndedAt: ['audioAggregationEndedAt'],
audioAggregationStartedAt: ['audioAggregationStartedAt'],
audioAggregationStatus: ['audioAggregationStatus'],
};
Properties
| Name | Type | Description |
|---|---|---|
| audio | string[] | audioAggregationEndedAt property. |
| audio | string[] | audioAggregationStartedAt property. |
| audio | string[] | audioAggregationStatus property. |
audioAggregationEndedAt?
Type:
string[]
(optional, default: Do not filter on this field)
audioAggregationEndedAt property.
Specify an array of string values to match this event if the actual value of audioAggregationEndedAt is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
audioAggregationStartedAt?
Type:
string[]
(optional, default: Do not filter on this field)
audioAggregationStartedAt property.
Specify an array of string values to match this event if the actual value of audioAggregationStartedAt is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
audioAggregationStatus?
Type:
string[]
(optional, default: Do not filter on this field)
audioAggregationStatus property.
Specify an array of string values to match this event if the actual value of audioAggregationStatus 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