Enum ChallengeNameType
- java.lang.Object
-
- java.lang.Enum<ChallengeNameType>
-
- software.amazon.awssdk.services.cognitoidentityprovider.model.ChallengeNameType
-
- All Implemented Interfaces:
Serializable,Comparable<ChallengeNameType>
@Generated("software.amazon.awssdk:codegen") public enum ChallengeNameType extends Enum<ChallengeNameType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ChallengeNameTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ChallengeNameType>knownValues()StringtoString()static ChallengeNameTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ChallengeNameType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SMS_MFA
public static final ChallengeNameType SMS_MFA
-
EMAIL_OTP
public static final ChallengeNameType EMAIL_OTP
-
SOFTWARE_TOKEN_MFA
public static final ChallengeNameType SOFTWARE_TOKEN_MFA
-
SELECT_MFA_TYPE
public static final ChallengeNameType SELECT_MFA_TYPE
-
MFA_SETUP
public static final ChallengeNameType MFA_SETUP
-
PASSWORD_VERIFIER
public static final ChallengeNameType PASSWORD_VERIFIER
-
CUSTOM_CHALLENGE
public static final ChallengeNameType CUSTOM_CHALLENGE
-
SELECT_CHALLENGE
public static final ChallengeNameType SELECT_CHALLENGE
-
DEVICE_SRP_AUTH
public static final ChallengeNameType DEVICE_SRP_AUTH
-
DEVICE_PASSWORD_VERIFIER
public static final ChallengeNameType DEVICE_PASSWORD_VERIFIER
-
ADMIN_NO_SRP_AUTH
public static final ChallengeNameType ADMIN_NO_SRP_AUTH
-
NEW_PASSWORD_REQUIRED
public static final ChallengeNameType NEW_PASSWORD_REQUIRED
-
SMS_OTP
public static final ChallengeNameType SMS_OTP
-
PASSWORD
public static final ChallengeNameType PASSWORD
-
WEB_AUTHN
public static final ChallengeNameType WEB_AUTHN
-
PASSWORD_SRP
public static final ChallengeNameType PASSWORD_SRP
-
UNKNOWN_TO_SDK_VERSION
public static final ChallengeNameType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ChallengeNameType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ChallengeNameType c : ChallengeNameType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ChallengeNameType 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 nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<ChallengeNameType>
-
fromValue
public static ChallengeNameType 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:
- ChallengeNameType corresponding to the value
-
knownValues
public static Set<ChallengeNameType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownChallengeNameTypes
-
-