Interface VerticalLayoutConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VerticalLayoutConfiguration.Builder,VerticalLayoutConfiguration>,SdkBuilder<VerticalLayoutConfiguration.Builder,VerticalLayoutConfiguration>,SdkPojo
- Enclosing class:
- VerticalLayoutConfiguration
public static interface VerticalLayoutConfiguration.Builder extends SdkPojo, CopyableBuilder<VerticalLayoutConfiguration.Builder,VerticalLayoutConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VerticalLayoutConfiguration.BuildertileAspectRatio(String tileAspectRatio)Sets the aspect ratio of the video tiles, such as 16:9.VerticalLayoutConfiguration.BuildertileCount(Integer tileCount)The maximum number of tiles to display.VerticalLayoutConfiguration.BuildertileOrder(String tileOrder)Sets the automatic ordering of the video tiles.VerticalLayoutConfiguration.BuildertileOrder(TileOrder tileOrder)Sets the automatic ordering of the video tiles.VerticalLayoutConfiguration.BuildertilePosition(String tilePosition)Sets the position of vertical tiles.VerticalLayoutConfiguration.BuildertilePosition(VerticalTilePosition tilePosition)Sets the position of vertical tiles.-
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
-
tileOrder
VerticalLayoutConfiguration.Builder tileOrder(String tileOrder)
Sets the automatic ordering of the video tiles.
-
tileOrder
VerticalLayoutConfiguration.Builder tileOrder(TileOrder tileOrder)
Sets the automatic ordering of the video tiles.
-
tilePosition
VerticalLayoutConfiguration.Builder tilePosition(String tilePosition)
Sets the position of vertical tiles.
- Parameters:
tilePosition- Sets the position of vertical tiles.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VerticalTilePosition,VerticalTilePosition
-
tilePosition
VerticalLayoutConfiguration.Builder tilePosition(VerticalTilePosition tilePosition)
Sets the position of vertical tiles.
- Parameters:
tilePosition- Sets the position of vertical tiles.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VerticalTilePosition,VerticalTilePosition
-
tileCount
VerticalLayoutConfiguration.Builder tileCount(Integer tileCount)
The maximum number of tiles to display.
- Parameters:
tileCount- The maximum number of tiles to display.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tileAspectRatio
VerticalLayoutConfiguration.Builder tileAspectRatio(String tileAspectRatio)
Sets the aspect ratio of the video tiles, such as 16:9.
- Parameters:
tileAspectRatio- Sets the aspect ratio of the video tiles, such as 16:9.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-