Interface Rectangle.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Rectangle.Builder,Rectangle>,SdkBuilder<Rectangle.Builder,Rectangle>,SdkPojo
- Enclosing class:
- Rectangle
public static interface Rectangle.Builder extends SdkPojo, CopyableBuilder<Rectangle.Builder,Rectangle>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rectangle.Builderheight(Integer height)Height of rectangle in pixels.Rectangle.Builderwidth(Integer width)Width of rectangle in pixels.Rectangle.Builderx(Integer x)The distance, in pixels, between the rectangle and the left edge of the video frame.Rectangle.Buildery(Integer y)The distance, in pixels, between the rectangle and the top edge of the video frame.-
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
-
height
Rectangle.Builder height(Integer height)
Height of rectangle in pixels. Specify only even numbers.- Parameters:
height- Height of rectangle in pixels. Specify only even numbers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
width
Rectangle.Builder width(Integer width)
Width of rectangle in pixels. Specify only even numbers.- Parameters:
width- Width of rectangle in pixels. Specify only even numbers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
x
Rectangle.Builder x(Integer x)
The distance, in pixels, between the rectangle and the left edge of the video frame. Specify only even numbers.- Parameters:
x- The distance, in pixels, between the rectangle and the left edge of the video frame. Specify only even numbers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
y
Rectangle.Builder y(Integer y)
The distance, in pixels, between the rectangle and the top edge of the video frame. Specify only even numbers.- Parameters:
y- The distance, in pixels, between the rectangle and the top edge of the video frame. Specify only even numbers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-