Interface CfnDataSource.FixedSizeChunkingConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSource.FixedSizeChunkingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configurations for when you choose fixed-size chunking.

If you set the chunkingStrategy as NONE , exclude this field.

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.*;
 FixedSizeChunkingConfigurationProperty fixedSizeChunkingConfigurationProperty = FixedSizeChunkingConfigurationProperty.builder()
         .maxTokens(123)
         .overlapPercentage(123)
         .build();
 

See Also: