Enum Athena2EndpointBuilderFactory.EncryptionOption
- java.lang.Object
-
- java.lang.Enum<Athena2EndpointBuilderFactory.EncryptionOption>
-
- org.apache.camel.builder.endpoint.dsl.Athena2EndpointBuilderFactory.EncryptionOption
-
- All Implemented Interfaces:
Serializable
,Comparable<Athena2EndpointBuilderFactory.EncryptionOption>
- Enclosing interface:
- Athena2EndpointBuilderFactory
public static enum Athena2EndpointBuilderFactory.EncryptionOption extends Enum<Athena2EndpointBuilderFactory.EncryptionOption>
Proxy enum forsoftware.amazon.awssdk.services.athena.model.EncryptionOption
enum.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CSE_KMS
SSE_KMS
SSE_S3
UNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Athena2EndpointBuilderFactory.EncryptionOption
valueOf(String name)
Returns the enum constant of this type with the specified name.static Athena2EndpointBuilderFactory.EncryptionOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SSE_S3
public static final Athena2EndpointBuilderFactory.EncryptionOption SSE_S3
-
SSE_KMS
public static final Athena2EndpointBuilderFactory.EncryptionOption SSE_KMS
-
CSE_KMS
public static final Athena2EndpointBuilderFactory.EncryptionOption CSE_KMS
-
UNKNOWN_TO_SDK_VERSION
public static final Athena2EndpointBuilderFactory.EncryptionOption UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static Athena2EndpointBuilderFactory.EncryptionOption[] 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 (Athena2EndpointBuilderFactory.EncryptionOption c : Athena2EndpointBuilderFactory.EncryptionOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Athena2EndpointBuilderFactory.EncryptionOption 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
-
-