interface StreamHealthChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IVS.Events.StreamHealthChange.StreamHealthChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsivs/events#StreamHealthChange_StreamHealthChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.ivs.events.StreamHealthChange.StreamHealthChangeProps |
Python | aws_cdk.mixins_preview.aws_ivs.events.StreamHealthChange.StreamHealthChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_ivs ยป events ยป StreamHealthChange ยป StreamHealthChangeProps |
Props type for aws.ivs@StreamHealthChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as ivs_events } from '@aws-cdk/mixins-preview/aws-ivs';
const streamHealthChangeProps: ivs_events.StreamHealthChange.StreamHealthChangeProps = {
channelName: ['channelName'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
eventName: ['eventName'],
streamId: ['streamId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string[] | channel_name property. |
| event | AWSEvent | EventBridge event metadata. |
| event | string[] | event_name property. |
| stream | string[] | stream_id property. |
channelName?
Type:
string[]
(optional, default: Do not filter on this field)
channel_name property.
Specify an array of string values to match this event if the actual value of channel_name 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.
eventName?
Type:
string[]
(optional, default: Do not filter on this field)
event_name property.
Specify an array of string values to match this event if the actual value of event_name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
streamId?
Type:
string[]
(optional, default: Do not filter on this field)
stream_id property.
Specify an array of string values to match this event if the actual value of stream_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