Show / Hide Table of Contents

Interface CfnKnowledgeBasePropsMixin.IOpenSearchServerlessFieldMappingProperty

Contains the names of the fields to which to map information about the vector store.

Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnKnowledgeBasePropsMixin.IOpenSearchServerlessFieldMappingProperty
Syntax (vb)
Public Interface CfnKnowledgeBasePropsMixin.IOpenSearchServerlessFieldMappingProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-opensearchserverlessfieldmapping.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 openSearchServerlessFieldMappingProperty = new OpenSearchServerlessFieldMappingProperty {
                 MetadataField = "metadataField",
                 TextField = "textField",
                 VectorField = "vectorField"
             };

Synopsis

Properties

MetadataField

The name of the field in which Amazon Bedrock stores metadata about the vector store.

TextField

The name of the field in which Amazon Bedrock stores the raw text from your data.

VectorField

The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.

Properties

MetadataField

The name of the field in which Amazon Bedrock stores metadata about the vector store.

string? MetadataField { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-opensearchserverlessfieldmapping.html#cfn-bedrock-knowledgebase-opensearchserverlessfieldmapping-metadatafield

TextField

The name of the field in which Amazon Bedrock stores the raw text from your data.

string? TextField { get; }
Property Value

string

Remarks

The text is split according to the chunking strategy you choose.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-opensearchserverlessfieldmapping.html#cfn-bedrock-knowledgebase-opensearchserverlessfieldmapping-textfield

VectorField

The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.

string? VectorField { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-opensearchserverlessfieldmapping.html#cfn-bedrock-knowledgebase-opensearchserverlessfieldmapping-vectorfield

Back to top Generated by DocFX