Interface CfnEncoderConfiguration.VideoProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEncoderConfiguration.VideoProperty.Jsii$Proxy
- Enclosing class:
CfnEncoderConfiguration
@Stability(Stable)
public static interface CfnEncoderConfiguration.VideoProperty
extends software.amazon.jsii.JsiiSerializable
The Video property type describes a stream's video configuration.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ivs.*;
VideoProperty videoProperty = VideoProperty.builder()
.bitrate(123)
.framerate(123)
.height(123)
.width(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEncoderConfiguration.VideoPropertystatic final classAn implementation forCfnEncoderConfiguration.VideoProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBitrate
Bitrate for generated output, in bps.Default: 2500000.
Default: - 2500000
- See Also:
-
getFramerate
Video frame rate, in fps.Default: 30.
Default: - 30
- See Also:
-
getHeight
Video-resolution height.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 Also:
-
getWidth
Video-resolution width.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 Also:
-
builder
-