Enum ConnectionPropertyKey
- java.lang.Object
-
- java.lang.Enum<ConnectionPropertyKey>
-
- software.amazon.awssdk.services.glue.model.ConnectionPropertyKey
-
- All Implemented Interfaces:
Serializable,Comparable<ConnectionPropertyKey>
@Generated("software.amazon.awssdk:codegen") public enum ConnectionPropertyKey extends Enum<ConnectionPropertyKey>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConnectionPropertyKeyfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ConnectionPropertyKey>knownValues()StringtoString()static ConnectionPropertyKeyvalueOf(String name)Returns the enum constant of this type with the specified name.static ConnectionPropertyKey[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HOST
public static final ConnectionPropertyKey HOST
-
PORT
public static final ConnectionPropertyKey PORT
-
USERNAME
public static final ConnectionPropertyKey USERNAME
-
PASSWORD
public static final ConnectionPropertyKey PASSWORD
-
ENCRYPTED_PASSWORD
public static final ConnectionPropertyKey ENCRYPTED_PASSWORD
-
JDBC_DRIVER_JAR_URI
public static final ConnectionPropertyKey JDBC_DRIVER_JAR_URI
-
JDBC_DRIVER_CLASS_NAME
public static final ConnectionPropertyKey JDBC_DRIVER_CLASS_NAME
-
JDBC_ENGINE
public static final ConnectionPropertyKey JDBC_ENGINE
-
JDBC_ENGINE_VERSION
public static final ConnectionPropertyKey JDBC_ENGINE_VERSION
-
CONFIG_FILES
public static final ConnectionPropertyKey CONFIG_FILES
-
INSTANCE_ID
public static final ConnectionPropertyKey INSTANCE_ID
-
JDBC_CONNECTION_URL
public static final ConnectionPropertyKey JDBC_CONNECTION_URL
-
JDBC_ENFORCE_SSL
public static final ConnectionPropertyKey JDBC_ENFORCE_SSL
-
CUSTOM_JDBC_CERT
public static final ConnectionPropertyKey CUSTOM_JDBC_CERT
-
SKIP_CUSTOM_JDBC_CERT_VALIDATION
public static final ConnectionPropertyKey SKIP_CUSTOM_JDBC_CERT_VALIDATION
-
CUSTOM_JDBC_CERT_STRING
public static final ConnectionPropertyKey CUSTOM_JDBC_CERT_STRING
-
CONNECTION_URL
public static final ConnectionPropertyKey CONNECTION_URL
-
KAFKA_BOOTSTRAP_SERVERS
public static final ConnectionPropertyKey KAFKA_BOOTSTRAP_SERVERS
-
KAFKA_SSL_ENABLED
public static final ConnectionPropertyKey KAFKA_SSL_ENABLED
-
KAFKA_CUSTOM_CERT
public static final ConnectionPropertyKey KAFKA_CUSTOM_CERT
-
KAFKA_SKIP_CUSTOM_CERT_VALIDATION
public static final ConnectionPropertyKey KAFKA_SKIP_CUSTOM_CERT_VALIDATION
-
KAFKA_CLIENT_KEYSTORE
public static final ConnectionPropertyKey KAFKA_CLIENT_KEYSTORE
-
KAFKA_CLIENT_KEYSTORE_PASSWORD
public static final ConnectionPropertyKey KAFKA_CLIENT_KEYSTORE_PASSWORD
-
KAFKA_CLIENT_KEY_PASSWORD
public static final ConnectionPropertyKey KAFKA_CLIENT_KEY_PASSWORD
-
ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD
public static final ConnectionPropertyKey ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD
-
ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD
public static final ConnectionPropertyKey ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD
-
SECRET_ID
public static final ConnectionPropertyKey SECRET_ID
-
CONNECTOR_URL
public static final ConnectionPropertyKey CONNECTOR_URL
-
CONNECTOR_TYPE
public static final ConnectionPropertyKey CONNECTOR_TYPE
-
CONNECTOR_CLASS_NAME
public static final ConnectionPropertyKey CONNECTOR_CLASS_NAME
-
KAFKA_SASL_MECHANISM
public static final ConnectionPropertyKey KAFKA_SASL_MECHANISM
-
KAFKA_SASL_SCRAM_USERNAME
public static final ConnectionPropertyKey KAFKA_SASL_SCRAM_USERNAME
-
KAFKA_SASL_SCRAM_PASSWORD
public static final ConnectionPropertyKey KAFKA_SASL_SCRAM_PASSWORD
-
KAFKA_SASL_SCRAM_SECRETS_ARN
public static final ConnectionPropertyKey KAFKA_SASL_SCRAM_SECRETS_ARN
-
ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD
public static final ConnectionPropertyKey ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD
-
KAFKA_SASL_GSSAPI_KEYTAB
public static final ConnectionPropertyKey KAFKA_SASL_GSSAPI_KEYTAB
-
KAFKA_SASL_GSSAPI_KRB5_CONF
public static final ConnectionPropertyKey KAFKA_SASL_GSSAPI_KRB5_CONF
-
KAFKA_SASL_GSSAPI_SERVICE
public static final ConnectionPropertyKey KAFKA_SASL_GSSAPI_SERVICE
-
KAFKA_SASL_GSSAPI_PRINCIPAL
public static final ConnectionPropertyKey KAFKA_SASL_GSSAPI_PRINCIPAL
-
UNKNOWN_TO_SDK_VERSION
public static final ConnectionPropertyKey UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ConnectionPropertyKey[] 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 (ConnectionPropertyKey c : ConnectionPropertyKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConnectionPropertyKey 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<ConnectionPropertyKey>
-
fromValue
public static ConnectionPropertyKey fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- ConnectionPropertyKey corresponding to the value
-
knownValues
public static Set<ConnectionPropertyKey> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownConnectionPropertyKeys
-
-