Enum CredentialsProvider.Type
- java.lang.Object
-
- java.lang.Enum<CredentialsProvider.Type>
-
- software.amazon.awssdk.services.licensemanagerusersubscriptions.model.CredentialsProvider.Type
-
- All Implemented Interfaces:
Serializable,Comparable<CredentialsProvider.Type>
- Enclosing class:
- CredentialsProvider
public static enum CredentialsProvider.Type extends Enum<CredentialsProvider.Type>
- See Also:
CredentialsProvider.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SECRETS_MANAGER_CREDENTIALS_PROVIDERUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CredentialsProvider.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static CredentialsProvider.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SECRETS_MANAGER_CREDENTIALS_PROVIDER
public static final CredentialsProvider.Type SECRETS_MANAGER_CREDENTIALS_PROVIDER
-
UNKNOWN_TO_SDK_VERSION
public static final CredentialsProvider.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static CredentialsProvider.Type[] 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 (CredentialsProvider.Type c : CredentialsProvider.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CredentialsProvider.Type 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
-
-