public static final enum

BroadcastConfiguration.AspectMode

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.amazonaws.ivs.broadcast.BroadcastConfiguration.AspectMode

Class Overview

The AspectMode determines how an image's aspect ratio will be maintained. NONE will simply fill the bounding area with the image, disregarding the aspect ratio. FIT will fit the entire image within the bounding area while maintaining the correct aspect ratio. in practice this means that there will be letterboxing or pillarboxing. FILL will fill the bounding area with the image while maintaining the aspect ratio. in practice this means that the image will likely be cropped.

Summary

Enum Values
BroadcastConfiguration.AspectMode  FILL   
BroadcastConfiguration.AspectMode  FIT   
BroadcastConfiguration.AspectMode  NONE   
Fields
public int value
Public Methods
static BroadcastConfiguration.AspectMode valueOf(String name)
final static AspectMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final BroadcastConfiguration.AspectMode FILL

public static final BroadcastConfiguration.AspectMode FIT

public static final BroadcastConfiguration.AspectMode NONE

Fields

public int value

Public Methods

public static BroadcastConfiguration.AspectMode valueOf (String name)

public static final AspectMode[] values ()