All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.bedrock.kotlin.outputs.KnowledgeBasePineconeFieldMapping.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.11.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.bedrock.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Contains the names of the fields to which to map information about the vector store.
 * @property metadataField The name of the field in which Amazon Bedrock stores metadata about the vector store.
 * @property textField The name of the field in which Amazon Bedrock stores the raw text from your data. The text is split according to the chunking strategy you choose.
 */
public data class KnowledgeBasePineconeFieldMapping(
    public val metadataField: String,
    public val textField: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.bedrock.outputs.KnowledgeBasePineconeFieldMapping): KnowledgeBasePineconeFieldMapping = KnowledgeBasePineconeFieldMapping(
            metadataField = javaType.metadataField(),
            textField = javaType.textField(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy