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: