@Stability(value=Stable)
public static interface CfnDataSource.ConfluenceBlogConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Blogs are always indexed unless filtered from the index by the ExclusionPatterns or InclusionPatterns fields in the ConfluenceConfiguration object.
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.*;
ConfluenceBlogConfigurationProperty confluenceBlogConfigurationProperty = ConfluenceBlogConfigurationProperty.builder()
.blogFieldMappings(List.of(ConfluenceBlogToIndexFieldMappingProperty.builder()
.dataSourceFieldName("dataSourceFieldName")
.indexFieldName("indexFieldName")
// the properties below are optional
.dateFieldFormat("dateFieldFormat")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataSource.ConfluenceBlogConfigurationProperty.Builder
A builder for
CfnDataSource.ConfluenceBlogConfigurationProperty |
static class |
CfnDataSource.ConfluenceBlogConfigurationProperty.Jsii$Proxy
An implementation for
CfnDataSource.ConfluenceBlogConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataSource.ConfluenceBlogConfigurationProperty.Builder |
builder() |
default Object |
getBlogFieldMappings()
Maps attributes or field names of Confluence blogs to Amazon Kendra index field names.
|
@Stability(value=Stable) @Nullable default Object getBlogFieldMappings()
To create custom fields, use the UpdateIndex API before you map to Confluence fields. For more information, see Mapping data source fields . The Confluence data source field names must exist in your Confluence custom metadata.
If you specify the BlogFieldMappings parameter, you must specify at least one field mapping.
@Stability(value=Stable) static CfnDataSource.ConfluenceBlogConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.