Interface CfnFlow.VideoMonitoringSettingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlow.VideoMonitoringSettingProperty.Jsii$Proxy
- Enclosing class:
CfnFlow
@Stability(Stable)
public static interface CfnFlow.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.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 class
A builder forCfnFlow.VideoMonitoringSettingProperty
static final class
An implementation forCfnFlow.VideoMonitoringSettingProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBlackFrames
Detects video frames that are black.- See Also:
-
getFrozenFrames
Detects video frames that have not changed.- See Also:
-
builder
-