interface SourceMonitoringConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.SourceMonitoringConfig |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#SourceMonitoringConfig |
Java | software.amazon.awscdk.services.mediaconnect.alpha.SourceMonitoringConfig |
Python | aws_cdk.aws_mediaconnect_alpha.SourceMonitoringConfig |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป SourceMonitoringConfig |
Source monitoring settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
import * as cdk from 'aws-cdk-lib';
const sourceMonitoringConfig: mediaconnect_alpha.SourceMonitoringConfig = {
blackFrames: {
state: mediaconnect_alpha.State.ENABLED,
threshold: cdk.Duration.minutes(30),
},
contentQualityAnalysisState: mediaconnect_alpha.State.ENABLED,
frozenFrames: {
state: mediaconnect_alpha.State.ENABLED,
threshold: cdk.Duration.minutes(30),
},
silentAudio: {
state: mediaconnect_alpha.State.ENABLED,
threshold: cdk.Duration.minutes(30),
},
thumbnailState: mediaconnect_alpha.State.ENABLED,
};
Properties
| Name | Type | Description |
|---|---|---|
| black | Monitoring | Black-frames detection on the source. |
| content | State | Indicates whether content quality analysis is enabled or disabled. |
| frozen | Monitoring | Frozen-frames detection on the source. |
| silent | Monitoring | Silent-audio detection on the source. |
| thumbnail | State | The current state of the thumbnail monitoring. |
blackFrames?
Type:
Monitoring
(optional, default: black frames monitoring is not configured)
Black-frames detection on the source.
contentQualityAnalysisState?
Type:
State
(optional, default: content quality analysis is disabled)
Indicates whether content quality analysis is enabled or disabled.
frozenFrames?
Type:
Monitoring
(optional, default: frozen frames monitoring is not configured)
Frozen-frames detection on the source.
silentAudio?
Type:
Monitoring
(optional, default: silent audio monitoring is not configured)
Silent-audio detection on the source.
thumbnailState?
Type:
State
(optional, default: thumbnail monitoring is disabled)
The current state of the thumbnail monitoring.

.NET
Go
Java
Python
TypeScript (