Show / Hide Table of Contents

Interface CfnFlowPropsMixin.IEncodingConfigProperty

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnFlowPropsMixin.IEncodingConfigProperty
Syntax (vb)
Public Interface CfnFlowPropsMixin.IEncodingConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-encodingconfig.html

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.CfnPropertyMixins.AWS.MediaConnect;

             var encodingConfigProperty = new EncodingConfigProperty {
                 EncodingProfile = "encodingProfile",
                 VideoMaxBitrate = 123
             };

Synopsis

Properties

EncodingProfile

The encoding profile to use when transcoding the NDI source to a Transport Stream.

VideoMaxBitrate

The maximum video bitrate to use when transcoding the NDI source to a Transport Stream.

Properties

EncodingProfile

The encoding profile to use when transcoding the NDI source to a Transport Stream.

string? EncodingProfile { get; }
Property Value

string

Remarks

You can change this value while a flow is running.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-encodingconfig.html#cfn-mediaconnect-flow-encodingconfig-encodingprofile

VideoMaxBitrate

The maximum video bitrate to use when transcoding the NDI source to a Transport Stream.

double? VideoMaxBitrate { get; }
Property Value

double?

Remarks

This parameter enables you to override the default video bitrate within the encoding profile's supported range. The supported range is 10,000,000 - 50,000,000 bits per second (bps). If you do not specify a value, MediaConnect uses the default value of 20,000,000 bps.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-encodingconfig.html#cfn-mediaconnect-flow-encodingconfig-videomaxbitrate

Back to top Generated by DocFX