Interface CfnDataSource.TransformationProperty

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

@Stability(Stable) public static interface CfnDataSource.TransformationProperty extends software.amazon.jsii.JsiiSerializable
A custom processing step for documents moving through a data source ingestion pipeline.

To process documents after they have been converted into chunks, set the step to apply to POST_CHUNKING .

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.*;
 TransformationProperty transformationProperty = TransformationProperty.builder()
         .stepToApply("stepToApply")
         .transformationFunction(TransformationFunctionProperty.builder()
                 .transformationLambdaConfiguration(TransformationLambdaConfigurationProperty.builder()
                         .lambdaArn("lambdaArn")
                         .build())
                 .build())
         .build();
 

See Also: