commonMain.aws.sdk.kotlin.services.bedrockagent.model.PineconeConfiguration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bedrockagent-jvm Show documentation
Show all versions of bedrockagent-jvm Show documentation
The AWS SDK for Kotlin client for Bedrock Agent
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.bedrockagent.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Contains details about the storage configuration of the knowledge base in Pinecone. For more information, see [Create a vector index in Pinecone](https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-pinecone.html).
*/
public class PineconeConfiguration private constructor(builder: Builder) {
/**
* The endpoint URL for your index management page.
*/
public val connectionString: kotlin.String = requireNotNull(builder.connectionString) { "A non-null value must be provided for connectionString" }
/**
* The Amazon Resource Name (ARN) of the secret that you created in Secrets Manager that is linked to your Pinecone API key.
*/
public val credentialsSecretArn: kotlin.String = requireNotNull(builder.credentialsSecretArn) { "A non-null value must be provided for credentialsSecretArn" }
/**
* Contains the names of the fields to which to map information about the vector store.
*/
public val fieldMapping: aws.sdk.kotlin.services.bedrockagent.model.PineconeFieldMapping? = builder.fieldMapping
/**
* The namespace to be used to write new data to your database.
*/
public val namespace: kotlin.String? = builder.namespace
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.bedrockagent.model.PineconeConfiguration = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PineconeConfiguration(")
append("connectionString=$connectionString,")
append("credentialsSecretArn=$credentialsSecretArn,")
append("fieldMapping=$fieldMapping,")
append("namespace=$namespace")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = connectionString.hashCode()
result = 31 * result + (credentialsSecretArn.hashCode())
result = 31 * result + (fieldMapping?.hashCode() ?: 0)
result = 31 * result + (namespace?.hashCode() ?: 0)
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as PineconeConfiguration
if (connectionString != other.connectionString) return false
if (credentialsSecretArn != other.credentialsSecretArn) return false
if (fieldMapping != other.fieldMapping) return false
if (namespace != other.namespace) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.bedrockagent.model.PineconeConfiguration = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The endpoint URL for your index management page.
*/
public var connectionString: kotlin.String? = null
/**
* The Amazon Resource Name (ARN) of the secret that you created in Secrets Manager that is linked to your Pinecone API key.
*/
public var credentialsSecretArn: kotlin.String? = null
/**
* Contains the names of the fields to which to map information about the vector store.
*/
public var fieldMapping: aws.sdk.kotlin.services.bedrockagent.model.PineconeFieldMapping? = null
/**
* The namespace to be used to write new data to your database.
*/
public var namespace: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.PineconeConfiguration) : this() {
this.connectionString = x.connectionString
this.credentialsSecretArn = x.credentialsSecretArn
this.fieldMapping = x.fieldMapping
this.namespace = x.namespace
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.bedrockagent.model.PineconeConfiguration = PineconeConfiguration(this)
/**
* construct an [aws.sdk.kotlin.services.bedrockagent.model.PineconeFieldMapping] inside the given [block]
*/
public fun fieldMapping(block: aws.sdk.kotlin.services.bedrockagent.model.PineconeFieldMapping.Builder.() -> kotlin.Unit) {
this.fieldMapping = aws.sdk.kotlin.services.bedrockagent.model.PineconeFieldMapping.invoke(block)
}
internal fun correctErrors(): Builder {
if (connectionString == null) connectionString = ""
if (credentialsSecretArn == null) credentialsSecretArn = ""
return this
}
}
}