interface MediaLiveMultiplexAlertProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Events.MediaLiveMultiplexAlert.MediaLiveMultiplexAlertProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/events#MediaLiveMultiplexAlert_MediaLiveMultiplexAlertProps |
Java | software.amazon.awscdk.mixins.preview.services.medialive.events.MediaLiveMultiplexAlert.MediaLiveMultiplexAlertProps |
Python | aws_cdk.mixins_preview.aws_medialive.events.MediaLiveMultiplexAlert.MediaLiveMultiplexAlertProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_medialive ยป events ยป MediaLiveMultiplexAlert ยป MediaLiveMultiplexAlertProps |
Props type for aws.medialive@MediaLiveMultiplexAlert event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as medialive_events } from '@aws-cdk/mixins-preview/aws-medialive';
const mediaLiveMultiplexAlertProps: medialive_events.MediaLiveMultiplexAlert.MediaLiveMultiplexAlertProps = {
alarmState: ['alarmState'],
alertType: ['alertType'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
message: ['message'],
pipeline: ['pipeline'],
};
Properties
| Name | Type | Description |
|---|---|---|
| alarm | string[] | alarm_state property. |
| alert | string[] | alert_type property. |
| event | AWSEvent | EventBridge event metadata. |
| message? | string[] | message property. |
| pipeline? | string[] | pipeline property. |
alarmState?
Type:
string[]
(optional, default: Do not filter on this field)
alarm_state property.
Specify an array of string values to match this event if the actual value of alarm_state is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
alertType?
Type:
string[]
(optional, default: Do not filter on this field)
alert_type property.
Specify an array of string values to match this event if the actual value of alert_type 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.
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.
pipeline?
Type:
string[]
(optional, default: Do not filter on this field)
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.

.NET
Go
Java
Python
TypeScript