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
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
Remarks
Default: 2500000.
Default: - 2500000
Framerate
Video frame rate, in fps.
double? Framerate { get; }
Property Value
Remarks
Height
Video-resolution height.
double? Height { get; }
Property Value
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
Width
Video-resolution width.
double? Width { get; }
Property Value
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