public enum AuthInfoType extends java.lang.Enum<AuthInfoType>
Enum Constant and Description |
---|
CERT
Certificate authentication
|
NONE
No authentication is required.
|
SECURITY_TOKEN
Security Token integration
|
UNDEFINED
Auth info undefined or not specified.
|
Modifier and Type | Method and Description |
---|---|
int |
getIntType()
Returns the type as an integer which can be consumed by the native layer
|
static AuthInfoType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthInfoType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthInfoType UNDEFINED
public static final AuthInfoType CERT
public static final AuthInfoType SECURITY_TOKEN
public static final AuthInfoType NONE
public static AuthInfoType[] values()
for (AuthInfoType c : AuthInfoType.values()) System.out.println(c);
public static AuthInfoType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getIntType()
Copyright © 2018 Amazon Web Services, Inc. All Rights Reserved.