java.lang.Object
java.lang.Enum<InputRotate>
software.amazon.awssdk.services.mediaconvert.model.InputRotate
All Implemented Interfaces:
Serializable, Comparable<InputRotate>

@Generated("software.amazon.awssdk:codegen") public enum InputRotate extends Enum<InputRotate>
Use Rotate to specify how the service rotates your video. You can choose automatic rotation or specify a rotation. You can specify a clockwise rotation of 0, 90, 180, or 270 degrees. If your input video container is .mov or .mp4 and your input has rotation metadata, you can choose Automatic to have the service rotate your video according to the rotation specified in the metadata. The rotation must be within one degree of 90, 180, or 270 degrees. If the rotation metadata specifies any other rotation, the service will default to no rotation. By default, the service does no rotation, even if your input video has rotation metadata. The service doesn't pass through rotation metadata.
  • Enum Constant Details

    • DEGREE_0

      public static final InputRotate DEGREE_0
    • DEGREES_90

      public static final InputRotate DEGREES_90
    • DEGREES_180

      public static final InputRotate DEGREES_180
    • DEGREES_270

      public static final InputRotate DEGREES_270
    • AUTO

      public static final InputRotate AUTO
    • UNKNOWN_TO_SDK_VERSION

      public static final InputRotate UNKNOWN_TO_SDK_VERSION
  • Method Details

    • values

      public static InputRotate[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static InputRotate valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<InputRotate>
    • fromValue

      public static InputRotate fromValue(String value)
      Use this in place of valueOf to convert the raw string returned by the service into the enum value.
      Parameters:
      value - real value
      Returns:
      InputRotate corresponding to the value
    • knownValues

      public static Set<InputRotate> knownValues()
      Use this in place of values() to return a Set of all values known to the SDK. This will return all known enum values except UNKNOWN_TO_SDK_VERSION.
      Returns:
      a Set of known InputRotates