Interface CfnKnowledgeBase.HierarchicalChunkingConfigurationProperty

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

@Stability(Stable) public static interface CfnKnowledgeBase.HierarchicalChunkingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Settings for hierarchical document chunking for a data source.

Hierarchical chunking splits documents into layers of chunks where the first layer contains large chunks, and the second layer contains smaller chunks derived from the first layer.

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.wisdom.*;
 HierarchicalChunkingConfigurationProperty hierarchicalChunkingConfigurationProperty = HierarchicalChunkingConfigurationProperty.builder()
         .levelConfigurations(List.of(HierarchicalChunkingLevelConfigurationProperty.builder()
                 .maxTokens(123)
                 .build()))
         .overlapTokens(123)
         .build();
 

See Also: