Interface DomainEvents.VoiceIdUpdateSessionAction.ErrorInfo
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DomainEvents.VoiceIdUpdateSessionAction.ErrorInfo.Jsii$Proxy
- Enclosing class:
DomainEvents.VoiceIdUpdateSessionAction
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.voiceid.events.*;
ErrorInfo errorInfo = ErrorInfo.builder()
.errorCode(List.of("errorCode"))
.errorMessage(List.of("errorMessage"))
.errorType(List.of("errorType"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDomainEvents.VoiceIdUpdateSessionAction.ErrorInfostatic final classAn implementation forDomainEvents.VoiceIdUpdateSessionAction.ErrorInfo -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) errorCode property.(experimental) errorMessage property.(experimental) errorType property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getErrorCode
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getErrorMessage
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getErrorType
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-