
com.pulumi.awsnative.bedrock.kotlin.outputs.DataSourceVectorIngestionConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.bedrock.kotlin.outputs
import kotlin.Suppress
/**
* Details about how to chunk the documents in the data source. A chunk refers to an excerpt from a data source that is returned when the knowledge base that it belongs to is queried.
* @property chunkingConfiguration Details about how to chunk the documents in the data source. A *chunk* refers to an excerpt from a data source that is returned when the knowledge base that it belongs to is queried.
*/
public data class DataSourceVectorIngestionConfiguration(
public val chunkingConfiguration: DataSourceChunkingConfiguration? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.bedrock.outputs.DataSourceVectorIngestionConfiguration): DataSourceVectorIngestionConfiguration = DataSourceVectorIngestionConfiguration(
chunkingConfiguration = javaType.chunkingConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.bedrock.kotlin.outputs.DataSourceChunkingConfiguration.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy