MediaPackageKeyProviderNotification

class aws_cdk.mixins_preview.aws_mediapackage.events.MediaPackageKeyProviderNotification

Bases: object

(experimental) EventBridge event pattern for aws.mediapackage@MediaPackageKeyProviderNotification.

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_mediapackage import events as mediapackage_events

media_package_key_provider_notification = mediapackage_events.MediaPackageKeyProviderNotification()
Stability:

experimental

Static Methods

classmethod event_pattern(*, event=None, event_metadata=None, message=None)

(experimental) EventBridge event pattern for MediaPackage Key Provider Notification.

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

  • 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

Stability:

experimental

Return type:

EventPattern

MediaPackageKeyProviderNotificationProps

class MediaPackageKeyProviderNotification.MediaPackageKeyProviderNotificationProps(*, event=None, event_metadata=None, message=None)

Bases: object

(experimental) Props type for aws.mediapackage@MediaPackageKeyProviderNotification event.

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

  • 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

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_mediapackage import events as mediapackage_events

media_package_key_provider_notification_props = mediapackage_events.MediaPackageKeyProviderNotification.MediaPackageKeyProviderNotificationProps(
    event=["event"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    message=["message"]
)

Attributes

event

(experimental) event property.

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

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