Show / Hide Table of Contents

Class CfnFlowPropsMixin.EncodingConfigProperty

Inheritance
object
CfnFlowPropsMixin.EncodingConfigProperty
Implements
CfnFlowPropsMixin.IEncodingConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnFlowPropsMixin.EncodingConfigProperty : CfnFlowPropsMixin.IEncodingConfigProperty
Syntax (vb)
Public Class CfnFlowPropsMixin.EncodingConfigProperty Implements 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

Constructors

EncodingConfigProperty()

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.

Constructors

EncodingConfigProperty()

public EncodingConfigProperty()
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
             };

Properties

EncodingProfile

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

public string? EncodingProfile { get; set; }
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.

public double? VideoMaxBitrate { get; set; }
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

Implements

CfnFlowPropsMixin.IEncodingConfigProperty
Back to top Generated by DocFX