Show / Hide Table of Contents

Class CfnDataSourcePropsMixin.TransformationProperty

A custom processing step for documents moving through a data source ingestion pipeline.

Inheritance
object
CfnDataSourcePropsMixin.TransformationProperty
Implements
CfnDataSourcePropsMixin.ITransformationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-transformation.html

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-transformation.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-transformation.html#cfn-bedrock-datasource-transformation-steptoapply

TransformationFunction

A Lambda function that processes documents.

public object? TransformationFunction { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-transformation.html#cfn-bedrock-datasource-transformation-transformationfunction

Type union: either IResolvable or CfnDataSourcePropsMixin.ITransformationFunctionProperty

Implements

CfnDataSourcePropsMixin.ITransformationProperty
Back to top Generated by DocFX