interface VideoMonitoringSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnFlowPropsMixin.VideoMonitoringSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnFlowPropsMixin_VideoMonitoringSettingProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnFlowPropsMixin.VideoMonitoringSettingProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnFlowPropsMixin.VideoMonitoringSettingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnFlowPropsMixin » 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 { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const videoMonitoringSettingProperty: mediaconnect_mixins.CfnFlowPropsMixin.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