Interface CfnKnowledgeBase.S3VectorsConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnKnowledgeBase.S3VectorsConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnKnowledgeBase

@Stability(Stable) public static interface CfnKnowledgeBase.S3VectorsConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains the storage configuration of the knowledge base for S3 vectors.

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.*;
 S3VectorsConfigurationProperty s3VectorsConfigurationProperty = S3VectorsConfigurationProperty.builder()
         .indexArn("indexArn")
         .indexName("indexName")
         .vectorBucketArn("vectorBucketArn")
         .build();
 

See Also: