interface ContentQualityAnalysisFeatureConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterInput.ContentQualityAnalysisFeatureConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterInput_ContentQualityAnalysisFeatureConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterInput.ContentQualityAnalysisFeatureConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterInput.ContentQualityAnalysisFeatureConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterInput » ContentQualityAnalysisFeatureConfigurationProperty |
Configures the content quality analysis features for the router input.
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 contentQualityAnalysisFeatureConfigurationProperty: mediaconnect.CfnRouterInput.ContentQualityAnalysisFeatureConfigurationProperty = {
blackFrames: {
state: 'state',
thresholdSeconds: 123,
},
frozenFrames: {
state: 'state',
thresholdSeconds: 123,
},
silentAudio: {
state: 'state',
thresholdSeconds: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| black | IResolvable | Black | Detects black frames in the router input's source content and reports them through a CloudWatch metric, an EventBridge event, and a router input message. |
| frozen | IResolvable | Frozen | Detects frozen video frames in the router input's source content and reports them through a CloudWatch metric, an EventBridge event, and a router input message. |
| silent | IResolvable | Silent | Detects silent audio in the router input's source content and reports it through a CloudWatch metric, an EventBridge event, and a router input message. |
blackFrames?
Type:
IResolvable | Black
(optional)
Detects black frames in the router input's source content and reports them through a CloudWatch metric, an EventBridge event, and a router input message.
frozenFrames?
Type:
IResolvable | Frozen
(optional)
Detects frozen video frames in the router input's source content and reports them through a CloudWatch metric, an EventBridge event, and a router input message.
silentAudio?
Type:
IResolvable | Silent
(optional)
Detects silent audio in the router input's source content and reports it through a CloudWatch metric, an EventBridge event, and a router input message.

.NET
Go
Java
Python
TypeScript