Interface TranscribeJobStateChange.TranscribeJobStateChangeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TranscribeJobStateChange.TranscribeJobStateChangeProps.Jsii$Proxy
- Enclosing class:
TranscribeJobStateChange
@Stability(Experimental)
public static interface TranscribeJobStateChange.TranscribeJobStateChangeProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.transcribe@TranscribeJobStateChange 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.*;
TranscribeJobStateChangeProps transcribeJobStateChangeProps = TranscribeJobStateChangeProps.builder()
.eventMetadata(AWSEventMetadataProps.builder()
.region(List.of("region"))
.resources(List.of("resources"))
.version(List.of("version"))
.build())
.transcriptionJobName(List.of("transcriptionJobName"))
.transcriptionJobStatus(List.of("transcriptionJobStatus"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forTranscribeJobStateChange.TranscribeJobStateChangePropsstatic final classAn implementation forTranscribeJobStateChange.TranscribeJobStateChangeProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) TranscriptionJobName property.(experimental) TranscriptionJobStatus property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
getTranscriptionJobName
(experimental) TranscriptionJobName property.Specify an array of string values to match this event if the actual value of TranscriptionJobName 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
-
getTranscriptionJobStatus
(experimental) TranscriptionJobStatus property.Specify an array of string values to match this event if the actual value of TranscriptionJobStatus 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 TranscribeJobStateChange.TranscribeJobStateChangeProps.Builder builder()
-