Interface CfnKnowledgeBase.RdsConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnKnowledgeBase.RdsConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnKnowledgeBase
@Stability(Stable)
public static interface CfnKnowledgeBase.RdsConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Contains details about the storage configuration of the knowledge base in Amazon RDS.
For more information, see Create a vector index in Amazon RDS .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.bedrock.*; RdsConfigurationProperty rdsConfigurationProperty = RdsConfigurationProperty.builder() .credentialsSecretArn("credentialsSecretArn") .databaseName("databaseName") .fieldMapping(RdsFieldMappingProperty.builder() .metadataField("metadataField") .primaryKeyField("primaryKeyField") .textField("textField") .vectorField("vectorField") .build()) .resourceArn("resourceArn") .tableName("tableName") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnKnowledgeBase.RdsConfigurationProperty
static final class
An implementation forCfnKnowledgeBase.RdsConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The Amazon Resource Name (ARN) of the secret that you created in AWS Secrets Manager that is linked to your Amazon RDS database.The name of your Amazon RDS database.Contains the names of the fields to which to map information about the vector store.The Amazon Resource Name (ARN) of the vector store.The name of the table in the database.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCredentialsSecretArn
The Amazon Resource Name (ARN) of the secret that you created in AWS Secrets Manager that is linked to your Amazon RDS database.- See Also:
-
getDatabaseName
The name of your Amazon RDS database.- See Also:
-
getFieldMapping
Contains the names of the fields to which to map information about the vector store.- See Also:
-
getResourceArn
The Amazon Resource Name (ARN) of the vector store.- See Also:
-
getTableName
The name of the table in the database.- See Also:
-
builder
-