Interface CallAnalyticsJobStateChange.CallAnalyticsJobStateChangeProps

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

@Stability(Experimental) public static interface CallAnalyticsJobStateChange.CallAnalyticsJobStateChangeProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.transcribe@CallAnalyticsJobStateChange 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.transcribe.events.*;
 CallAnalyticsJobStateChangeProps callAnalyticsJobStateChangeProps = CallAnalyticsJobStateChangeProps.builder()
         .analyticsJobDetails(AnalyticsJobDetails.builder()
                 .skipped(List.of(CallAnalyticsSkippedFeature.builder()
                         .feature(List.of("feature"))
                         .message(List.of("message"))
                         .reasonCode(List.of("reasonCode"))
                         .build()))
                 .build())
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .jobName(List.of("jobName"))
         .jobStatus(List.of("jobStatus"))
         .build();
 
  • Method Details

    • getAnalyticsJobDetails

      @Stability(Experimental) @Nullable default CallAnalyticsJobStateChange.AnalyticsJobDetails getAnalyticsJobDetails()
      (experimental) AnalyticsJobDetails property.

      Specify an array of string values to match this event if the actual value of AnalyticsJobDetails 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: - -

    • getJobName

      @Stability(Experimental) @Nullable default List<String> getJobName()
      (experimental) JobName property.

      Specify an array of string values to match this event if the actual value of JobName 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

    • getJobStatus

      @Stability(Experimental) @Nullable default List<String> getJobStatus()
      (experimental) JobStatus property.

      Specify an array of string values to match this event if the actual value of JobStatus 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

      Returns:
      a CallAnalyticsJobStateChange.CallAnalyticsJobStateChangeProps.Builder of CallAnalyticsJobStateChange.CallAnalyticsJobStateChangeProps