interface H264FilterSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.H264FilterSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_H264FilterSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.H264FilterSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.H264FilterSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » H264FilterSettingsProperty |
Settings to configure video filters that apply to the H264 codec.
The parent of this entity is H264Settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const h264FilterSettingsProperty: medialive_mixins.CfnChannelPropsMixin.H264FilterSettingsProperty = {
bandwidthReductionFilterSettings: {
postFilterSharpening: 'postFilterSharpening',
strength: 'strength',
},
temporalFilterSettings: {
postFilterSharpening: 'postFilterSharpening',
strength: 'strength',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| bandwidth | IResolvable | Bandwidth | |
| temporal | IResolvable | Temporal | Settings for applying the temporal filter to the video. |
bandwidthReductionFilterSettings?
Type:
IResolvable | Bandwidth
(optional)
temporalFilterSettings?
Type:
IResolvable | Temporal
(optional)
Settings for applying the temporal filter to the video.

.NET
Go
Java
Python
TypeScript