public enum SecretStore extends Enum<SecretStore>
Enum Constant and Description |
---|
PARAMETER_STORE |
SECRET_MANAGER |
Modifier and Type | Method and Description |
---|---|
static SecretStore |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecretStore[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecretStore PARAMETER_STORE
public static final SecretStore SECRET_MANAGER
public static SecretStore[] values()
for (SecretStore c : SecretStore.values()) System.out.println(c);
public static SecretStore valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023. All rights reserved.