Interface VoiceIdUpdateSessionAction.VoiceIdUpdateSessionActionProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
VoiceIdUpdateSessionAction.VoiceIdUpdateSessionActionProps.Jsii$Proxy
Enclosing class:
VoiceIdUpdateSessionAction

@Stability(Experimental) public static interface VoiceIdUpdateSessionAction.VoiceIdUpdateSessionActionProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for 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 software.amazon.awscdk.mixins.preview.services.voiceid.events.*;
 VoiceIdUpdateSessionActionProps voiceIdUpdateSessionActionProps = VoiceIdUpdateSessionActionProps.builder()
         .action(List.of("action"))
         .domainId(List.of("domainId"))
         .errorInfo(ErrorInfo.builder()
                 .errorCode(List.of("errorCode"))
                 .errorMessage(List.of("errorMessage"))
                 .errorType(List.of("errorType"))
                 .build())
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .session(Session.builder()
                 .authenticationConfiguration(AuthenticationConfiguration.builder()
                         .acceptanceThreshold(List.of("acceptanceThreshold"))
                         .build())
                 .fraudDetectionConfiguration(FraudDetectionConfiguration.builder()
                         .riskThreshold(List.of("riskThreshold"))
                         .watchlistId(List.of("watchlistId"))
                         .build())
                 .generatedSpeakerId(List.of("generatedSpeakerId"))
                 .sessionId(List.of("sessionId"))
                 .sessionName(List.of("sessionName"))
                 .build())
         .sourceId(List.of("sourceId"))
         .status(List.of("status"))
         .build();
 
  • Method Details

    • getAction

      @Stability(Experimental) @Nullable default List<String> getAction()
      (experimental) 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.

      Default: - Do not filter on this field

    • getDomainId

      @Stability(Experimental) @Nullable default List<String> getDomainId()
      (experimental) 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.

      Default: - Filter with the Domain reference

    • getErrorInfo

      @Stability(Experimental) @Nullable default VoiceIdUpdateSessionAction.ErrorInfo getErrorInfo()
      (experimental) 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.

      Default: - Do not filter on this field

    • getEventMetadata

      @Stability(Experimental) @Nullable default AWSEventMetadataProps getEventMetadata()
      (experimental) EventBridge event metadata.

      Default: - -

    • getSession

      @Stability(Experimental) @Nullable default VoiceIdUpdateSessionAction.Session getSession()
      (experimental) 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.

      Default: - Do not filter on this field

    • getSourceId

      @Stability(Experimental) @Nullable default List<String> getSourceId()
      (experimental) 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.

      Default: - Do not filter on this field

    • getStatus

      @Stability(Experimental) @Nullable default List<String> getStatus()
      (experimental) 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.

      Default: - Do not filter on this field

    • builder

      @Stability(Experimental) static VoiceIdUpdateSessionAction.VoiceIdUpdateSessionActionProps.Builder builder()
      Returns:
      a VoiceIdUpdateSessionAction.VoiceIdUpdateSessionActionProps.Builder of VoiceIdUpdateSessionAction.VoiceIdUpdateSessionActionProps