interface FrozenFramesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnFlowPropsMixin.FrozenFramesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnFlowPropsMixin_FrozenFramesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnFlowPropsMixin.FrozenFramesProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnFlowPropsMixin.FrozenFramesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnFlowPropsMixin » FrozenFramesProperty |
Configures settings for the FrozenFrames metric.
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 frozenFramesProperty: mediaconnect.CfnFlowPropsMixin.FrozenFramesProperty = {
state: 'state',
thresholdSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| state? | string | Indicates whether the FrozenFrames metric is enabled or disabled. |
| threshold | number | Specifies the number of consecutive seconds of a static image that triggers an event or alert. |
state?
Type:
string
(optional)
Indicates whether the FrozenFrames metric is enabled or disabled.
thresholdSeconds?
Type:
number
(optional)
Specifies the number of consecutive seconds of a static image that triggers an event or alert.

.NET
Go
Java
Python
TypeScript