@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 type.
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()
Defines how blog metadata fields should be mapped to index fields.
|
@Stability(value=Stable) @Nullable default Object getBlogFieldMappings()
Before you can map a field, you must first create an index field with a matching type using the console or the UpdateIndex operation.
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.