Interface CfnFlowPropsMixin.VideoMonitoringSettingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowPropsMixin.VideoMonitoringSettingProperty.Jsii$Proxy
- Enclosing class:
CfnFlowPropsMixin
@Stability(Stable)
public static interface CfnFlowPropsMixin.VideoMonitoringSettingProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.*;
VideoMonitoringSettingProperty videoMonitoringSettingProperty = VideoMonitoringSettingProperty.builder()
.blackFrames(BlackFramesProperty.builder()
.state("state")
.thresholdSeconds(123)
.build())
.frozenFrames(FrozenFramesProperty.builder()
.state("state")
.thresholdSeconds(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowPropsMixin.VideoMonitoringSettingPropertystatic final classAn implementation forCfnFlowPropsMixin.VideoMonitoringSettingProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBlackFrames
Detects video frames that are black.Returns union: either
IResolvableorCfnFlowPropsMixin.BlackFramesProperty- See Also:
-
getFrozenFrames
Detects video frames that have not changed.Returns union: either
IResolvableorCfnFlowPropsMixin.FrozenFramesProperty- See Also:
-
builder
-