interface BlackFramesConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterInput.BlackFramesConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterInput_BlackFramesConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterInput.BlackFramesConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterInput.BlackFramesConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterInput » BlackFramesConfigurationProperty |
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.
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 blackFramesConfigurationProperty: mediaconnect.CfnRouterInput.BlackFramesConfigurationProperty = {
state: 'state',
thresholdSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| state | string | |
| threshold | number | The number of consecutive seconds of black frames that MediaConnect must detect before it reports an issue. |
state
Type:
string
thresholdSeconds
Type:
number
The number of consecutive seconds of black frames that MediaConnect must detect before it reports an issue.

.NET
Go
Java
Python
TypeScript