public static enum KMSEndpointBuilderFactory.KMSOperations extends Enum<KMSEndpointBuilderFactory.KMSOperations>
org.apache.camel.component.aws.kms.KMSOperations enum.| Enum Constant and Description |
|---|
createKey |
describeKey |
disableKey |
enableKey |
listKeys |
scheduleKeyDeletion |
| Modifier and Type | Method and Description |
|---|---|
static KMSEndpointBuilderFactory.KMSOperations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KMSEndpointBuilderFactory.KMSOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KMSEndpointBuilderFactory.KMSOperations listKeys
public static final KMSEndpointBuilderFactory.KMSOperations createKey
public static final KMSEndpointBuilderFactory.KMSOperations disableKey
public static final KMSEndpointBuilderFactory.KMSOperations scheduleKeyDeletion
public static final KMSEndpointBuilderFactory.KMSOperations describeKey
public static final KMSEndpointBuilderFactory.KMSOperations enableKey
public static KMSEndpointBuilderFactory.KMSOperations[] values()
for (KMSEndpointBuilderFactory.KMSOperations c : KMSEndpointBuilderFactory.KMSOperations.values()) System.out.println(c);
public static KMSEndpointBuilderFactory.KMSOperations 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 nullApache Camel