interface MediaLiveChannelAlertProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Events.MediaLiveChannelAlert.MediaLiveChannelAlertProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/events#MediaLiveChannelAlert_MediaLiveChannelAlertProps |
Java | software.amazon.awscdk.mixins.preview.services.medialive.events.MediaLiveChannelAlert.MediaLiveChannelAlertProps |
Python | aws_cdk.mixins_preview.aws_medialive.events.MediaLiveChannelAlert.MediaLiveChannelAlertProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_medialive ยป events ยป MediaLiveChannelAlert ยป MediaLiveChannelAlertProps |
Props type for aws.medialive@MediaLiveChannelAlert 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 mediaLiveChannelAlertProps: medialive_events.MediaLiveChannelAlert.MediaLiveChannelAlertProps = {
alarmId: ['alarmId'],
alarmState: ['alarmState'],
alertType: ['alertType'],
channelArn: ['channelArn'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
message: ['message'],
pipeline: ['pipeline'],
};
Properties
| Name | Type | Description |
|---|---|---|
| alarm | string[] | alarm_id property. |
| alarm | string[] | alarm_state property. |
| alert | string[] | alert_type property. |
| channel | string[] | channel_arn property. |
| event | AWSEvent | EventBridge event metadata. |
| message? | string[] | message property. |
| pipeline? | string[] | pipeline property. |
alarmId?
Type:
string[]
(optional, default: Do not filter on this field)
alarm_id property.
Specify an array of string values to match this event if the actual value of alarm_id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
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.
channelArn?
Type:
string[]
(optional, default: Do not filter on this field)
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.
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