Show / Hide Table of Contents

Interface CfnEncoderConfigurationPropsMixin.IVideoProperty

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

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.IVS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnEncoderConfigurationPropsMixin.IVideoProperty
Syntax (vb)
Public Interface 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

Properties

Bitrate

Bitrate for generated output, in bps.

Framerate

Video frame rate, in fps.

Height

Video-resolution height.

Width

Video-resolution width.

Properties

Bitrate

Bitrate for generated output, in bps.

double? Bitrate { get; }
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.

double? Framerate { get; }
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.

double? Height { get; }
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.

double? Width { get; }
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

Back to top Generated by DocFX