Interface CfnRouterInput.ContentQualityAnalysisFeatureConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterInput.ContentQualityAnalysisFeatureConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRouterInput
@Stability(Stable)
public static interface CfnRouterInput.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.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRouterInput.ContentQualityAnalysisFeatureConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectDetects black frames in the router input's source content and reports them through a CloudWatch metric, an EventBridge event, and a router input message.default ObjectDetects frozen video frames in the router input's source content and reports them through a CloudWatch metric, an EventBridge event, and a router input message.default ObjectDetects silent audio in the router input's source content and reports it through a CloudWatch metric, an EventBridge event, and a router input message.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBlackFrames
Detects black frames in the router input's source content and reports them through a CloudWatch metric, an EventBridge event, and a router input message.Returns union: either
IResolvableorCfnRouterInput.BlackFramesConfigurationProperty- See Also:
-
getFrozenFrames
Detects frozen video frames in the router input's source content and reports them through a CloudWatch metric, an EventBridge event, and a router input message.Returns union: either
IResolvableorCfnRouterInput.FrozenFramesConfigurationProperty- See Also:
-
getSilentAudio
Detects silent audio in the router input's source content and reports it through a CloudWatch metric, an EventBridge event, and a router input message.Returns union: either
IResolvableorCfnRouterInput.SilentAudioConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnRouterInput.ContentQualityAnalysisFeatureConfigurationProperty.Builder builder()
-