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: