Interface CfnDataSource.ConfluencePageConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSource.ConfluencePageConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration of the page settings for the Confluence data source.

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.*;
 ConfluencePageConfigurationProperty confluencePageConfigurationProperty = ConfluencePageConfigurationProperty.builder()
         .pageFieldMappings(List.of(ConfluencePageToIndexFieldMappingProperty.builder()
                 .dataSourceFieldName("dataSourceFieldName")
                 .indexFieldName("indexFieldName")
                 // the properties below are optional
                 .dateFieldFormat("dateFieldFormat")
                 .build()))
         .build();
 

See Also: