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