interface TransformationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnDataSourcePropsMixin.TransformationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnDataSourcePropsMixin_TransformationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnDataSourcePropsMixin.TransformationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnDataSourcePropsMixin.TransformationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnDataSourcePropsMixin » TransformationProperty |
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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const transformationProperty: bedrock.CfnDataSourcePropsMixin.TransformationProperty = {
stepToApply: 'stepToApply',
transformationFunction: {
transformationLambdaConfiguration: {
lambdaArn: 'lambdaArn',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| step | string | When the service applies the transformation. |
| transformation | IResolvable | Transformation | A Lambda function that processes documents. |
stepToApply?
Type:
string
(optional)
When the service applies the transformation.
transformationFunction?
Type:
IResolvable | Transformation
(optional)
A Lambda function that processes documents.

.NET
Go
Java
Python
TypeScript