Interface CfnRouterInputPropsMixin.RouterContentQualityAnalysisConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRouterInputPropsMixin.RouterContentQualityAnalysisConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnRouterInputPropsMixin

@Stability(Stable) public static interface CfnRouterInputPropsMixin.RouterContentQualityAnalysisConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The content quality analysis configuration for the router input.

The content quality analysis feature only monitors the first video stream and the first audio stream it encounters within the router input source.

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.*;
 RouterContentQualityAnalysisConfigurationProperty routerContentQualityAnalysisConfigurationProperty = RouterContentQualityAnalysisConfigurationProperty.builder()
         .contentLevel(ContentQualityAnalysisFeatureConfigurationProperty.builder()
                 .blackFrames(BlackFramesConfigurationProperty.builder()
                         .state("state")
                         .thresholdSeconds(123)
                         .build())
                 .frozenFrames(FrozenFramesConfigurationProperty.builder()
                         .state("state")
                         .thresholdSeconds(123)
                         .build())
                 .silentAudio(SilentAudioConfigurationProperty.builder()
                         .state("state")
                         .thresholdSeconds(123)
                         .build())
                 .build())
         .build();
 

See Also: