Class CfnFlow.SourceMonitoringConfigProperty
The SourceMonitoringConfig
property type specifies the source monitoring settings for an AWS::MediaConnect::Flow.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.MediaConnect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class SourceMonitoringConfigProperty : Object, CfnFlow.ISourceMonitoringConfigProperty
Syntax (vb)
Public Class SourceMonitoringConfigProperty
Inherits Object
Implements CfnFlow.ISourceMonitoringConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MediaConnect;
var sourceMonitoringConfigProperty = new SourceMonitoringConfigProperty {
AudioMonitoringSettings = new [] { new AudioMonitoringSettingProperty {
SilentAudio = new SilentAudioProperty {
State = "state",
ThresholdSeconds = 123
}
} },
ContentQualityAnalysisState = "contentQualityAnalysisState",
ThumbnailState = "thumbnailState",
VideoMonitoringSettings = new [] { new VideoMonitoringSettingProperty {
BlackFrames = new BlackFramesProperty {
State = "state",
ThresholdSeconds = 123
},
FrozenFrames = new FrozenFramesProperty {
State = "state",
ThresholdSeconds = 123
}
} }
};
Synopsis
Constructors
Source |
Properties
Audio |
Contains the settings for audio stream metrics monitoring. |
Content |
Indicates whether content quality analysis is enabled or disabled. |
Thumbnail |
The current state of the thumbnail monitoring. |
Video |
Contains the settings for video stream metrics monitoring. |
Constructors
SourceMonitoringConfigProperty()
public SourceMonitoringConfigProperty()
Properties
AudioMonitoringSettings
Contains the settings for audio stream metrics monitoring.
public object AudioMonitoringSettings { get; set; }
Property Value
System.
Remarks
ContentQualityAnalysisState
Indicates whether content quality analysis is enabled or disabled.
public string ContentQualityAnalysisState { get; set; }
Property Value
System.
Remarks
ThumbnailState
The current state of the thumbnail monitoring.
public string ThumbnailState { get; set; }
Property Value
System.
Remarks
VideoMonitoringSettings
Contains the settings for video stream metrics monitoring.
public object VideoMonitoringSettings { get; set; }
Property Value
System.