java.lang.Object
java.lang.Enum<AuthType>
software.amazon.awssdk.codegen.model.service.AuthType
All Implemented Interfaces:
Serializable, Comparable<AuthType>

public enum AuthType extends Enum<AuthType>
  • Enum Constant Details

    • NONE

      public static final AuthType NONE
    • CUSTOM

      public static final AuthType CUSTOM
    • IAM

      public static final AuthType IAM
    • V4

      public static final AuthType V4
    • V4_UNSIGNED_BODY

      public static final AuthType V4_UNSIGNED_BODY
    • S3

      public static final AuthType S3
    • S3V4

      public static final AuthType S3V4
    • BEARER

      public static final AuthType BEARER
  • Method Details

    • values

      public static AuthType[] 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 AuthType 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
    • value

      public String value()
    • fromValue

      public static AuthType fromValue(String value)