Interface CfnRouterInput.RouterContentQualityAnalysisConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterInput.RouterContentQualityAnalysisConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRouterInput
@Stability(Stable)
public static interface CfnRouterInput.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.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 forCfnRouterInput.RouterContentQualityAnalysisConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Configures the content quality analysis features for the router input.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
IResolvableorCfnRouterInput.ContentQualityAnalysisFeatureConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnRouterInput.RouterContentQualityAnalysisConfigurationProperty.Builder builder()
-