Show / Hide Table of Contents

Class CfnEncoderConfigurationPropsMixin.VideoProperty

The Video property type describes a stream's video configuration.

Inheritance
object
CfnEncoderConfigurationPropsMixin.VideoProperty
Implements
CfnEncoderConfigurationPropsMixin.IVideoProperty
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.IVS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnEncoderConfigurationPropsMixin.VideoProperty : CfnEncoderConfigurationPropsMixin.IVideoProperty
Syntax (vb)
Public Class CfnEncoderConfigurationPropsMixin.VideoProperty Implements CfnEncoderConfigurationPropsMixin.IVideoProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-encoderconfiguration-video.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.IVS;

             var videoProperty = new VideoProperty {
                 Bitrate = 123,
                 Framerate = 123,
                 Height = 123,
                 Width = 123
             };

Synopsis

Constructors

VideoProperty()

The Video property type describes a stream's video configuration.

Properties

Bitrate

Bitrate for generated output, in bps.

Framerate

Video frame rate, in fps.

Height

Video-resolution height.

Width

Video-resolution width.

Constructors

VideoProperty()

The Video property type describes a stream's video configuration.

public VideoProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-encoderconfiguration-video.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.IVS;

             var videoProperty = new VideoProperty {
                 Bitrate = 123,
                 Framerate = 123,
                 Height = 123,
                 Width = 123
             };

Properties

Bitrate

Bitrate for generated output, in bps.

public double? Bitrate { get; set; }
Property Value

double?

Remarks

Default: 2500000.

Default: - 2500000

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-encoderconfiguration-video.html#cfn-ivs-encoderconfiguration-video-bitrate

Framerate

Video frame rate, in fps.

public double? Framerate { get; set; }
Property Value

double?

Remarks

Default: 30.

Default: - 30

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-encoderconfiguration-video.html#cfn-ivs-encoderconfiguration-video-framerate

Height

Video-resolution height.

public double? Height { get; set; }
Property Value

double?

Remarks

Note that the maximum value is determined by width times height, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 720.

Default: - 720

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-encoderconfiguration-video.html#cfn-ivs-encoderconfiguration-video-height

Width

Video-resolution width.

public double? Width { get; set; }
Property Value

double?

Remarks

Note that the maximum value is determined by width times height, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 1280.

Default: - 1280

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-encoderconfiguration-video.html#cfn-ivs-encoderconfiguration-video-width

Implements

CfnEncoderConfigurationPropsMixin.IVideoProperty
Back to top Generated by DocFX