interface RecordingStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IVS.Events.RecordingStateChange.RecordingStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsivs/events#RecordingStateChange_RecordingStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.ivs.events.RecordingStateChange.RecordingStateChangeProps |
Python | aws_cdk.mixins_preview.aws_ivs.events.RecordingStateChange.RecordingStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_ivs ยป events ยป RecordingStateChange ยป RecordingStateChangeProps |
Props type for aws.ivs@RecordingStateChange 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 recordingStateChangeProps: ivs_events.RecordingStateChange.RecordingStateChangeProps = {
channelName: ['channelName'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
recordingS3BucketName: ['recordingS3BucketName'],
recordingS3KeyPrefix: ['recordingS3KeyPrefix'],
recordingStatus: ['recordingStatus'],
recordingStatusReason: ['recordingStatusReason'],
streamId: ['streamId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string[] | channel_name property. |
| event | AWSEvent | EventBridge event metadata. |
| recording | string[] | recording_s3_bucket_name property. |
| recording | string[] | recording_s3_key_prefix property. |
| recording | string[] | recording_status property. |
| recording | string[] | recording_status_reason 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.
recordingS3BucketName?
Type:
string[]
(optional, default: Do not filter on this field)
recording_s3_bucket_name property.
Specify an array of string values to match this event if the actual value of recording_s3_bucket_name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
recordingS3KeyPrefix?
Type:
string[]
(optional, default: Do not filter on this field)
recording_s3_key_prefix property.
Specify an array of string values to match this event if the actual value of recording_s3_key_prefix is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
recordingStatus?
Type:
string[]
(optional, default: Do not filter on this field)
recording_status property.
Specify an array of string values to match this event if the actual value of recording_status is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
recordingStatusReason?
Type:
string[]
(optional, default: Do not filter on this field)
recording_status_reason property.
Specify an array of string values to match this event if the actual value of recording_status_reason 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