Interface CfnRouterInputPropsMixin.ContentQualityAnalysisFeatureConfigurationProperty

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

@Stability(Stable) public static interface CfnRouterInputPropsMixin.ContentQualityAnalysisFeatureConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configures the content quality analysis features for the router input.

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.*;
 ContentQualityAnalysisFeatureConfigurationProperty contentQualityAnalysisFeatureConfigurationProperty = 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();
 

See Also: