Show / Hide Table of Contents

Class CfnKnowledgeBase.PineconeFieldMappingProperty

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

Inheritance
object
CfnKnowledgeBase.PineconeFieldMappingProperty
Implements
CfnKnowledgeBase.IPineconeFieldMappingProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnKnowledgeBase.PineconeFieldMappingProperty : CfnKnowledgeBase.IPineconeFieldMappingProperty
Syntax (vb)
Public Class CfnKnowledgeBase.PineconeFieldMappingProperty Implements CfnKnowledgeBase.IPineconeFieldMappingProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-pineconefieldmapping.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.AWS.Bedrock;

             var pineconeFieldMappingProperty = new PineconeFieldMappingProperty {
                 MetadataField = "metadataField",
                 TextField = "textField"
             };

Synopsis

Constructors

PineconeFieldMappingProperty()

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

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.

Constructors

PineconeFieldMappingProperty()

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

public PineconeFieldMappingProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-pineconefieldmapping.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.AWS.Bedrock;

             var pineconeFieldMappingProperty = new PineconeFieldMappingProperty {
                 MetadataField = "metadataField",
                 TextField = "textField"
             };

Properties

MetadataField

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

public string MetadataField { get; set; }
Property Value

string

Remarks

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

TextField

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

public string TextField { get; set; }
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-pineconefieldmapping.html#cfn-bedrock-knowledgebase-pineconefieldmapping-textfield

Implements

CfnKnowledgeBase.IPineconeFieldMappingProperty
Back to top Generated by DocFX