interface Data
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VoiceID.Events.VoiceIdSpeakerAction.Data |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvoiceid/events#VoiceIdSpeakerAction_Data |
Java | software.amazon.awscdk.mixins.preview.services.voiceid.events.VoiceIdSpeakerAction.Data |
Python | aws_cdk.mixins_preview.aws_voiceid.events.VoiceIdSpeakerAction.Data |
TypeScript | @aws-cdk/mixins-preview ยป aws_voiceid ยป events ยป VoiceIdSpeakerAction ยป Data |
Type definition for Data.
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 data: voiceid_events.VoiceIdSpeakerAction.Data = {
enrollmentSource: ['enrollmentSource'],
enrollmentSourceId: ['enrollmentSourceId'],
enrollmentStatus: ['enrollmentStatus'],
};
Properties
| Name | Type | Description |
|---|---|---|
| enrollment | string[] | enrollmentSource property. |
| enrollment | string[] | enrollmentSourceId property. |
| enrollment | string[] | enrollmentStatus property. |
enrollmentSource?
Type:
string[]
(optional, default: Do not filter on this field)
enrollmentSource property.
Specify an array of string values to match this event if the actual value of enrollmentSource is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
enrollmentSourceId?
Type:
string[]
(optional, default: Do not filter on this field)
enrollmentSourceId property.
Specify an array of string values to match this event if the actual value of enrollmentSourceId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
enrollmentStatus?
Type:
string[]
(optional, default: Do not filter on this field)
enrollmentStatus property.
Specify an array of string values to match this event if the actual value of enrollmentStatus 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