interface MediaPackageInputNotificationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackage.Events.MediaPackageInputNotification.MediaPackageInputNotificationProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackage/events#MediaPackageInputNotification_MediaPackageInputNotificationProps |
Java | software.amazon.awscdk.mixins.preview.services.mediapackage.events.MediaPackageInputNotification.MediaPackageInputNotificationProps |
Python | aws_cdk.mixins_preview.aws_mediapackage.events.MediaPackageInputNotification.MediaPackageInputNotificationProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_mediapackage ยป events ยป MediaPackageInputNotification ยป MediaPackageInputNotificationProps |
Props type for aws.mediapackage@MediaPackageInputNotification event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as mediapackage_events } from '@aws-cdk/mixins-preview/aws-mediapackage';
const mediaPackageInputNotificationProps: mediapackage_events.MediaPackageInputNotification.MediaPackageInputNotificationProps = {
event: ['event'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
manifestUrls: ['manifestUrls'],
message: ['message'],
packagingConfigurationId: ['packagingConfigurationId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event? | string[] | event property. |
| event | AWSEvent | EventBridge event metadata. |
| manifest | string[] | manifest_urls property. |
| message? | string[] | message property. |
| packaging | string[] | packaging_configuration_id property. |
event?
Type:
string[]
(optional, default: Do not filter on this field)
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.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
manifestUrls?
Type:
string[]
(optional, default: Do not filter on this field)
manifest_urls property.
Specify an array of string values to match this event if the actual value of manifest_urls is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
message?
Type:
string[]
(optional, default: Do not filter on this field)
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.
packagingConfigurationId?
Type:
string[]
(optional, default: Do not filter on this field)
packaging_configuration_id property.
Specify an array of string values to match this event if the actual value of packaging_configuration_id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript