interface VideoMonitoringSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnFlow.VideoMonitoringSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnFlow_VideoMonitoringSettingProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnFlow.VideoMonitoringSettingProperty |
Python | aws_cdk.aws_mediaconnect.CfnFlow.VideoMonitoringSettingProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnFlow » VideoMonitoringSettingProperty |
Specifies the configuration for video stream metrics monitoring.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediaconnect as mediaconnect } from 'aws-cdk-lib';
const videoMonitoringSettingProperty: mediaconnect.CfnFlow.VideoMonitoringSettingProperty = {
blackFrames: {
state: 'state',
thresholdSeconds: 123,
},
frozenFrames: {
state: 'state',
thresholdSeconds: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| black | IResolvable | Black | Detects video frames that are black. |
| frozen | IResolvable | Frozen | Detects video frames that have not changed. |
blackFrames?
Type:
IResolvable | Black
(optional)
Detects video frames that are black.
frozenFrames?
Type:
IResolvable | Frozen
(optional)
Detects video frames that have not changed.

.NET
Go
Java
Python
TypeScript