Interface CfnDataSourcePropsMixin.DataSourceToIndexFieldMappingProperty

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

@Stability(Stable) public static interface CfnDataSourcePropsMixin.DataSourceToIndexFieldMappingProperty extends software.amazon.jsii.JsiiSerializable
Maps a column or attribute in the data source to an index field.

You must first create the fields in the index using the UpdateIndex operation.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.kendra.*;
 DataSourceToIndexFieldMappingProperty dataSourceToIndexFieldMappingProperty = DataSourceToIndexFieldMappingProperty.builder()
         .dataSourceFieldName("dataSourceFieldName")
         .dateFieldFormat("dateFieldFormat")
         .indexFieldName("indexFieldName")
         .build();
 

See Also: