Interface CfnDataSource.ColumnConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSource.ColumnConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDataSource

@Stability(Stable) public static interface CfnDataSource.ColumnConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Provides information about how Amazon Kendra should use the columns of a database in an index.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.kendra.*;
 ColumnConfigurationProperty columnConfigurationProperty = ColumnConfigurationProperty.builder()
         .changeDetectingColumns(List.of("changeDetectingColumns"))
         .documentDataColumnName("documentDataColumnName")
         .documentIdColumnName("documentIdColumnName")
         // the properties below are optional
         .documentTitleColumnName("documentTitleColumnName")
         .fieldMappings(List.of(DataSourceToIndexFieldMappingProperty.builder()
                 .dataSourceFieldName("dataSourceFieldName")
                 .indexFieldName("indexFieldName")
                 // the properties below are optional
                 .dateFieldFormat("dateFieldFormat")
                 .build()))
         .build();
 

See Also: