Interface CallAnalyticsJobStateChange.CallAnalyticsJobStateChangeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CallAnalyticsJobStateChange.CallAnalyticsJobStateChangeProps.Jsii$Proxy
- Enclosing class:
CallAnalyticsJobStateChange
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCallAnalyticsJobStateChange.CallAnalyticsJobStateChangeProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) AnalyticsJobDetails property.default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) JobName property.(experimental) JobStatus property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
@Stability(Experimental) static CallAnalyticsJobStateChange.CallAnalyticsJobStateChangeProps.Builder builder()
-