interface SilentAudioConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnRouterInputPropsMixin.SilentAudioConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnRouterInputPropsMixin_SilentAudioConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnRouterInputPropsMixin.SilentAudioConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnRouterInputPropsMixin.SilentAudioConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnRouterInputPropsMixin » SilentAudioConfigurationProperty |
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.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediaconnect as mediaconnect } from '@aws-cdk/cfn-property-mixins';
const silentAudioConfigurationProperty: mediaconnect.CfnRouterInputPropsMixin.SilentAudioConfigurationProperty = {
state: 'state',
thresholdSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| state? | string | |
| threshold | number | The number of consecutive seconds of silence that MediaConnect must detect before it reports an issue. |
state?
Type:
string
(optional)
thresholdSeconds?
Type:
number
(optional)
The number of consecutive seconds of silence that MediaConnect must detect before it reports an issue.

.NET
Go
Java
Python
TypeScript