interface Session
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VoiceID.Events.DomainEvents.VoiceIdUpdateSessionAction.Session |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvoiceid/events#DomainEvents_VoiceIdUpdateSessionAction_Session |
Java | software.amazon.awscdk.mixins.preview.services.voiceid.events.DomainEvents.VoiceIdUpdateSessionAction.Session |
Python | aws_cdk.mixins_preview.aws_voiceid.events.DomainEvents.VoiceIdUpdateSessionAction.Session |
TypeScript | @aws-cdk/mixins-preview ยป aws_voiceid ยป events ยป DomainEvents ยป VoiceIdUpdateSessionAction ยป Session |
Type definition for Session.
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 session: voiceid_events.DomainEvents.VoiceIdUpdateSessionAction.Session = {
authenticationConfiguration: {
acceptanceThreshold: ['acceptanceThreshold'],
},
fraudDetectionConfiguration: {
riskThreshold: ['riskThreshold'],
watchlistId: ['watchlistId'],
},
generatedSpeakerId: ['generatedSpeakerId'],
sessionId: ['sessionId'],
sessionName: ['sessionName'],
};
Properties
| Name | Type | Description |
|---|---|---|
| authentication | Authentication | authenticationConfiguration property. |
| fraud | Fraud | fraudDetectionConfiguration property. |
| generated | string[] | generatedSpeakerId property. |
| session | string[] | sessionId property. |
| session | string[] | sessionName property. |
authenticationConfiguration?
Type:
Authentication
(optional, default: Do not filter on this field)
authenticationConfiguration property.
Specify an array of string values to match this event if the actual value of authenticationConfiguration is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
fraudDetectionConfiguration?
Type:
Fraud
(optional, default: Do not filter on this field)
fraudDetectionConfiguration property.
Specify an array of string values to match this event if the actual value of fraudDetectionConfiguration is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
generatedSpeakerId?
Type:
string[]
(optional, default: Do not filter on this field)
generatedSpeakerId property.
Specify an array of string values to match this event if the actual value of generatedSpeakerId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
sessionId?
Type:
string[]
(optional, default: Do not filter on this field)
sessionId property.
Specify an array of string values to match this event if the actual value of sessionId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
sessionName?
Type:
string[]
(optional, default: Do not filter on this field)
sessionName property.
Specify an array of string values to match this event if the actual value of sessionName 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