DataSourceColumnConfigurationArgs

data class DataSourceColumnConfigurationArgs(val changeDetectingColumns: Output<List<String>>, val documentDataColumnName: Output<String>, val documentIdColumnName: Output<String>, val documentTitleColumnName: Output<String>? = null, val fieldMappings: Output<List<DataSourceToIndexFieldMappingArgs>>? = null) : ConvertibleToJava<DataSourceColumnConfigurationArgs>

Constructors

Link copied to clipboard
constructor(changeDetectingColumns: Output<List<String>>, documentDataColumnName: Output<String>, documentIdColumnName: Output<String>, documentTitleColumnName: Output<String>? = null, fieldMappings: Output<List<DataSourceToIndexFieldMappingArgs>>? = null)

Properties

Link copied to clipboard

One to five columns that indicate when a document in the database has changed.

Link copied to clipboard

The column that contains the contents of the document.

Link copied to clipboard

The column that provides the document's identifier.

Link copied to clipboard
val documentTitleColumnName: Output<String>? = null

The column that contains the title of the document.

Link copied to clipboard

An array of objects that map database column names to the corresponding fields in an index. You must first create the fields in the index using the UpdateIndex operation.

Functions

Link copied to clipboard
open override fun toJava(): DataSourceColumnConfigurationArgs