Interface CfnDataSource.ITransformationProperty
A custom processing step for documents moving through a data source ingestion pipeline.
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDataSource.ITransformationProperty
Syntax (vb)
Public Interface CfnDataSource.ITransformationProperty
Remarks
To process documents after they have been converted into chunks, set the step to apply to POST_CHUNKING .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Bedrock;
var transformationProperty = new TransformationProperty {
StepToApply = "stepToApply",
TransformationFunction = new TransformationFunctionProperty {
TransformationLambdaConfiguration = new TransformationLambdaConfigurationProperty {
LambdaArn = "lambdaArn"
}
}
};
Synopsis
Properties
| StepToApply | When the service applies the transformation. |
| TransformationFunction | A Lambda function that processes documents. |
Properties
StepToApply
When the service applies the transformation.
string StepToApply { get; }
Property Value
Remarks
TransformationFunction
A Lambda function that processes documents.
object TransformationFunction { get; }