@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum KnowledgeBaseStorageType extends Enum<KnowledgeBaseStorageType>
Enum Constant and Description |
---|
MONGO_DB_ATLAS |
OPENSEARCH_SERVERLESS |
PINECONE |
RDS |
REDIS_ENTERPRISE_CLOUD |
Modifier and Type | Method and Description |
---|---|
static KnowledgeBaseStorageType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static KnowledgeBaseStorageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KnowledgeBaseStorageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KnowledgeBaseStorageType OPENSEARCH_SERVERLESS
public static final KnowledgeBaseStorageType PINECONE
public static final KnowledgeBaseStorageType REDIS_ENTERPRISE_CLOUD
public static final KnowledgeBaseStorageType RDS
public static final KnowledgeBaseStorageType MONGO_DB_ATLAS
public static KnowledgeBaseStorageType[] values()
for (KnowledgeBaseStorageType c : KnowledgeBaseStorageType.values()) System.out.println(c);
public static KnowledgeBaseStorageType 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 nullpublic String toString()
toString
in class Enum<KnowledgeBaseStorageType>
public static KnowledgeBaseStorageType fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.