MediaLiveChannelInputChange

class aws_cdk.mixins_preview.aws_medialive.events.MediaLiveChannelInputChange

Bases: object

(experimental) EventBridge event pattern for aws.medialive@MediaLiveChannelInputChange.

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_medialive import events as medialive_events

media_live_channel_input_change = medialive_events.MediaLiveChannelInputChange()
Stability:

experimental

Static Methods

classmethod media_live_channel_input_change_pattern(*, active_input_attachment_name=None, active_input_switch_action_name=None, channel_arn=None, event_metadata=None, message=None, pipeline=None)

(experimental) EventBridge event pattern for MediaLive Channel Input Change.

Parameters:
  • active_input_attachment_name (Optional[Sequence[str]]) – (experimental) active_input_attachment_name property. Specify an array of string values to match this event if the actual value of active_input_attachment_name 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

  • active_input_switch_action_name (Optional[Sequence[str]]) – (experimental) active_input_switch_action_name property. Specify an array of string values to match this event if the actual value of active_input_switch_action_name 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

  • channel_arn (Optional[Sequence[str]]) – (experimental) channel_arn property. Specify an array of string values to match this event if the actual value of channel_arn 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 Channel reference

  • event_metadata (Union[AWSEventMetadataProps, Dict[str, Any], None]) – (experimental) EventBridge event metadata. Default: - -

  • message (Optional[Sequence[str]]) – (experimental) message property. Specify an array of string values to match this event if the actual value of message 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

  • pipeline (Optional[Sequence[str]]) – (experimental) pipeline property. Specify an array of string values to match this event if the actual value of pipeline 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

Stability:

experimental

Return type:

EventPattern

MediaLiveChannelInputChangeProps

class MediaLiveChannelInputChange.MediaLiveChannelInputChangeProps(*, active_input_attachment_name=None, active_input_switch_action_name=None, channel_arn=None, event_metadata=None, message=None, pipeline=None)

Bases: object

(experimental) Props type for aws.medialive@MediaLiveChannelInputChange event.

Parameters:
  • active_input_attachment_name (Optional[Sequence[str]]) – (experimental) active_input_attachment_name property. Specify an array of string values to match this event if the actual value of active_input_attachment_name 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

  • active_input_switch_action_name (Optional[Sequence[str]]) – (experimental) active_input_switch_action_name property. Specify an array of string values to match this event if the actual value of active_input_switch_action_name 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

  • channel_arn (Optional[Sequence[str]]) – (experimental) channel_arn property. Specify an array of string values to match this event if the actual value of channel_arn 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 Channel reference

  • event_metadata (Union[AWSEventMetadataProps, Dict[str, Any], None]) – (experimental) EventBridge event metadata. Default: - -

  • message (Optional[Sequence[str]]) – (experimental) message property. Specify an array of string values to match this event if the actual value of message 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

  • pipeline (Optional[Sequence[str]]) – (experimental) pipeline property. Specify an array of string values to match this event if the actual value of pipeline 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

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_medialive import events as medialive_events

media_live_channel_input_change_props = medialive_events.MediaLiveChannelInputChange.MediaLiveChannelInputChangeProps(
    active_input_attachment_name=["activeInputAttachmentName"],
    active_input_switch_action_name=["activeInputSwitchActionName"],
    channel_arn=["channelArn"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    message=["message"],
    pipeline=["pipeline"]
)

Attributes

active_input_attachment_name

(experimental) active_input_attachment_name property.

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

Stability:

experimental

active_input_switch_action_name

(experimental) active_input_switch_action_name property.

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

Stability:

experimental

channel_arn

(experimental) channel_arn property.

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

Stability:

experimental

event_metadata

(experimental) EventBridge event metadata.

Default:

Stability:

experimental

message

(experimental) message property.

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

Stability:

experimental

pipeline

(experimental) pipeline property.

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

Stability:

experimental