interface VoiceIdUpdateSessionActionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VoiceID.Events.DomainEvents.VoiceIdUpdateSessionAction.VoiceIdUpdateSessionActionProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvoiceid/events#DomainEvents_VoiceIdUpdateSessionAction_VoiceIdUpdateSessionActionProps |
Java | software.amazon.awscdk.mixins.preview.services.voiceid.events.DomainEvents.VoiceIdUpdateSessionAction.VoiceIdUpdateSessionActionProps |
Python | aws_cdk.mixins_preview.aws_voiceid.events.DomainEvents.VoiceIdUpdateSessionAction.VoiceIdUpdateSessionActionProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_voiceid ยป events ยป DomainEvents ยป VoiceIdUpdateSessionAction ยป VoiceIdUpdateSessionActionProps |
Props type for Domain aws.voiceid@VoiceIdUpdateSessionAction event.
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 voiceIdUpdateSessionActionProps: voiceid_events.DomainEvents.VoiceIdUpdateSessionAction.VoiceIdUpdateSessionActionProps = {
action: ['action'],
domainId: ['domainId'],
errorInfo: {
errorCode: ['errorCode'],
errorMessage: ['errorMessage'],
errorType: ['errorType'],
},
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
session: {
authenticationConfiguration: {
acceptanceThreshold: ['acceptanceThreshold'],
},
fraudDetectionConfiguration: {
riskThreshold: ['riskThreshold'],
watchlistId: ['watchlistId'],
},
generatedSpeakerId: ['generatedSpeakerId'],
sessionId: ['sessionId'],
sessionName: ['sessionName'],
},
sourceId: ['sourceId'],
status: ['status'],
};
Properties
| Name | Type | Description |
|---|---|---|
| action? | string[] | action property. |
| domain | string[] | domainId property. |
| error | Error | errorInfo property. |
| event | AWSEvent | EventBridge event metadata. |
| session? | Session | session property. |
| source | string[] | sourceId property. |
| status? | string[] | status property. |
action?
Type:
string[]
(optional, default: Do not filter on this field)
action property.
Specify an array of string values to match this event if the actual value of action is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
domainId?
Type:
string[]
(optional, default: Filter with the Domain reference)
domainId property.
Specify an array of string values to match this event if the actual value of domainId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
errorInfo?
Type:
Error
(optional, default: Do not filter on this field)
errorInfo property.
Specify an array of string values to match this event if the actual value of errorInfo is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
session?
Type:
Session
(optional, default: Do not filter on this field)
session property.
Specify an array of string values to match this event if the actual value of session is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
sourceId?
Type:
string[]
(optional, default: Do not filter on this field)
sourceId property.
Specify an array of string values to match this event if the actual value of sourceId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
status?
Type:
string[]
(optional, default: Do not filter on this field)
status property.
Specify an array of string values to match this event if the actual value of status 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