Interface CfnDataSourcePropsMixin.WorkDocsConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSourcePropsMixin.WorkDocsConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Provides the configuration information to connect to WorkDocs as your data source.

WorkDocs connector is available in Oregon, North Virginia, Sydney, Singapore and Ireland regions.

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.*;
 WorkDocsConfigurationProperty workDocsConfigurationProperty = WorkDocsConfigurationProperty.builder()
         .crawlComments(false)
         .exclusionPatterns(List.of("exclusionPatterns"))
         .fieldMappings(List.of(DataSourceToIndexFieldMappingProperty.builder()
                 .dataSourceFieldName("dataSourceFieldName")
                 .dateFieldFormat("dateFieldFormat")
                 .indexFieldName("indexFieldName")
                 .build()))
         .inclusionPatterns(List.of("inclusionPatterns"))
         .organizationId("organizationId")
         .useChangeLog(false)
         .build();
 

See Also: