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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRouterInputPropsMixin.RouterContentQualityAnalysisConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContentLevel
Configures the content quality analysis features for the router input.Returns union: either
IResolvableorCfnRouterInputPropsMixin.ContentQualityAnalysisFeatureConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnRouterInputPropsMixin.RouterContentQualityAnalysisConfigurationProperty.Builder builder()
-