Class CfnDataSourcePropsMixin.TransformationProperty
A custom processing step for documents moving through a data source ingestion pipeline.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSourcePropsMixin.TransformationProperty : CfnDataSourcePropsMixin.ITransformationProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.TransformationProperty Implements CfnDataSourcePropsMixin.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.Mixins.Preview.AWS.Bedrock.Mixins;
var transformationProperty = new TransformationProperty {
StepToApply = "stepToApply",
TransformationFunction = new TransformationFunctionProperty {
TransformationLambdaConfiguration = new TransformationLambdaConfigurationProperty {
LambdaArn = "lambdaArn"
}
}
};
Synopsis
Constructors
| TransformationProperty() | A custom processing step for documents moving through a data source ingestion pipeline. |
Properties
| StepToApply | When the service applies the transformation. |
| TransformationFunction | A Lambda function that processes documents. |
Constructors
TransformationProperty()
A custom processing step for documents moving through a data source ingestion pipeline.
public TransformationProperty()
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.Mixins.Preview.AWS.Bedrock.Mixins;
var transformationProperty = new TransformationProperty {
StepToApply = "stepToApply",
TransformationFunction = new TransformationFunctionProperty {
TransformationLambdaConfiguration = new TransformationLambdaConfigurationProperty {
LambdaArn = "lambdaArn"
}
}
};
Properties
StepToApply
When the service applies the transformation.
public string? StepToApply { get; set; }
Property Value
Remarks
TransformationFunction
A Lambda function that processes documents.
public object? TransformationFunction { get; set; }