TranscribeJobStateChange
- class aws_cdk.mixins_preview.aws_transcribe.events.TranscribeJobStateChange
Bases:
object(experimental) EventBridge event pattern for aws.transcribe@TranscribeJobStateChange.
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_transcribe import events as transcribe_events transcribe_job_state_change = transcribe_events.TranscribeJobStateChange()
- Stability:
experimental
Static Methods
- classmethod event_pattern(*, event_metadata=None, transcription_job_name=None, transcription_job_status=None)
(experimental) EventBridge event pattern for Transcribe Job State Change.
- Parameters:
event_metadata (
Union[AWSEventMetadataProps,Dict[str,Any],None]) – (experimental) EventBridge event metadata. Default: - -transcription_job_name (
Optional[Sequence[str]]) – (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 theaws_events.Matchfor more advanced matching options. Default: - Do not filter on this fieldtranscription_job_status (
Optional[Sequence[str]]) – (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 theaws_events.Matchfor more advanced matching options. Default: - Do not filter on this field
- Stability:
experimental
- Return type:
TranscribeJobStateChangeProps
- class TranscribeJobStateChange.TranscribeJobStateChangeProps(*, event_metadata=None, transcription_job_name=None, transcription_job_status=None)
Bases:
object(experimental) Props type for aws.transcribe@TranscribeJobStateChange event.
- Parameters:
event_metadata (
Union[AWSEventMetadataProps,Dict[str,Any],None]) – (experimental) EventBridge event metadata. Default: - -transcription_job_name (
Optional[Sequence[str]]) – (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 theaws_events.Matchfor more advanced matching options. Default: - Do not filter on this fieldtranscription_job_status (
Optional[Sequence[str]]) – (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 theaws_events.Matchfor more advanced matching options. Default: - Do not filter on this field
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import AWSEventMetadataProps # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_transcribe import events as transcribe_events transcribe_job_state_change_props = transcribe_events.TranscribeJobStateChange.TranscribeJobStateChangeProps( event_metadata=AWSEventMetadataProps( region=["region"], resources=["resources"], version=["version"] ), transcription_job_name=["transcriptionJobName"], transcription_job_status=["transcriptionJobStatus"] )
Attributes
- event_metadata
(experimental) EventBridge event metadata.
- Default:
- Stability:
experimental
- transcription_job_name
(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
- Stability:
experimental
- transcription_job_status
(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
- Stability:
experimental