interface BlackFramesConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnRouterInputPropsMixin.BlackFramesConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnRouterInputPropsMixin_BlackFramesConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnRouterInputPropsMixin.BlackFramesConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnRouterInputPropsMixin.BlackFramesConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnRouterInputPropsMixin » 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/cfn-property-mixins';
const blackFramesConfigurationProperty: mediaconnect.CfnRouterInputPropsMixin.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
(optional)
thresholdSeconds?
Type:
number
(optional)
The number of consecutive seconds of black frames that MediaConnect must detect before it reports an issue.

.NET
Go
Java
Python
TypeScript