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