Interface Video.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Video.Builder,Video>,SdkBuilder<Video.Builder,Video>,SdkPojo
- Enclosing class:
- Video
public static interface Video.Builder extends SdkPojo, CopyableBuilder<Video.Builder,Video>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Video.Builderbitrate(Integer bitrate)Bitrate for generated output, in bps.Video.Builderframerate(Float framerate)Video frame rate, in fps.Video.Builderheight(Integer height)Video-resolution height.Video.Builderwidth(Integer width)Video-resolution width.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
bitrate
Video.Builder bitrate(Integer bitrate)
Bitrate for generated output, in bps. Default: 2500000.
- Parameters:
bitrate- Bitrate for generated output, in bps. Default: 2500000.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
framerate
Video.Builder framerate(Float framerate)
Video frame rate, in fps. Default: 30.
- Parameters:
framerate- Video frame rate, in fps. Default: 30.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
height
Video.Builder height(Integer height)
Video-resolution height. Note that the maximum value is determined by
widthtimesheight, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 720.- Parameters:
height- Video-resolution height. Note that the maximum value is determined bywidthtimesheight, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 720.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
width
Video.Builder width(Integer width)
Video-resolution width. Note that the maximum value is determined by
widthtimesheight, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 1280.- Parameters:
width- Video-resolution width. Note that the maximum value is determined bywidthtimesheight, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 1280.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-