Interface CfnDataSource.ServiceNowServiceCatalogConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSource.ServiceNowServiceCatalogConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Provides the configuration information for crawling service catalog items in the ServiceNow site.

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.*;
 ServiceNowServiceCatalogConfigurationProperty serviceNowServiceCatalogConfigurationProperty = ServiceNowServiceCatalogConfigurationProperty.builder()
         .documentDataFieldName("documentDataFieldName")
         // the properties below are optional
         .crawlAttachments(false)
         .documentTitleFieldName("documentTitleFieldName")
         .excludeAttachmentFilePatterns(List.of("excludeAttachmentFilePatterns"))
         .fieldMappings(List.of(DataSourceToIndexFieldMappingProperty.builder()
                 .dataSourceFieldName("dataSourceFieldName")
                 .indexFieldName("indexFieldName")
                 // the properties below are optional
                 .dateFieldFormat("dateFieldFormat")
                 .build()))
         .includeAttachmentFilePatterns(List.of("includeAttachmentFilePatterns"))
         .build();
 

See Also: