Interface Video.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<Video.Builder,
,Video> SdkBuilder<Video.Builder,
,Video> SdkPojo
- Enclosing class:
Video
@Mutable
@NotThreadSafe
public static interface Video.Builder
extends SdkPojo, CopyableBuilder<Video.Builder,Video>
-
Method Summary
Modifier and TypeMethodDescriptionBitrate for generated output, in bps.Video frame rate, in fps.Video-resolution height.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, sdkFieldNameToField, sdkFields
-
Method Details
-
width
Video-resolution width. This must be an even number. Note that the maximum value is determined by
width
timesheight
, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 1280.- Parameters:
width
- Video-resolution width. This must be an even number. Note that the maximum value is determined bywidth
timesheight
, 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.
-
height
Video-resolution height. This must be an even number. Note that the maximum value is determined by
width
timesheight
, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 720.- Parameters:
height
- Video-resolution height. This must be an even number. Note that the maximum value is determined bywidth
timesheight
, 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.
-
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.
-
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.
-