Interface CfnDataSource.ConfluenceSpaceConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSource.ConfluenceSpaceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration information for indexing Confluence spaces.

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.*;
 ConfluenceSpaceConfigurationProperty confluenceSpaceConfigurationProperty = ConfluenceSpaceConfigurationProperty.builder()
         .crawlArchivedSpaces(false)
         .crawlPersonalSpaces(false)
         .excludeSpaces(List.of("excludeSpaces"))
         .includeSpaces(List.of("includeSpaces"))
         .spaceFieldMappings(List.of(ConfluenceSpaceToIndexFieldMappingProperty.builder()
                 .dataSourceFieldName("dataSourceFieldName")
                 .indexFieldName("indexFieldName")
                 // the properties below are optional
                 .dateFieldFormat("dateFieldFormat")
                 .build()))
         .build();
 

See Also: