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