public enum OptionalParameters extends java.lang.Enum<OptionalParameters>
OptionalParameters contains the optional parameters supported by the CloudHSM
provider. This type is used in CloudHsmCluster by providing the required optional
parameter in the com.amazonaws.cloudhsm.jce.provider.builder.CloudHsmClusterBuilder.| Enum Constant and Description |
|---|
KEY_AVAILABILITY_CHECK
Key availability check during key use.
|
VALIDATE_KEY_AT_INIT
parameter validation during initialization of crypto operations.
|
| Modifier and Type | Method and Description |
|---|---|
static OptionalParameters |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OptionalParameters[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionalParameters VALIDATE_KEY_AT_INIT
public static final OptionalParameters KEY_AVAILABILITY_CHECK
public static OptionalParameters[] values()
for (OptionalParameters c : OptionalParameters.values()) System.out.println(c);
public static OptionalParameters 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 null