aws-cdk-lib.aws_kendra.CfnDataSource.ConfluenceBlogConfigurationProperty

interface ConfluenceBlogConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.Kendra.CfnDataSource.ConfluenceBlogConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskendra#CfnDataSource_ConfluenceBlogConfigurationProperty
Javasoftware.amazon.awscdk.services.kendra.CfnDataSource.ConfluenceBlogConfigurationProperty
Pythonaws_cdk.aws_kendra.CfnDataSource.ConfluenceBlogConfigurationProperty
TypeScript aws-cdk-lib » aws_kendra » CfnDataSource » ConfluenceBlogConfigurationProperty

Configuration of blog settings for the Confluence data source.

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 { aws_kendra as kendra } from 'aws-cdk-lib';
const confluenceBlogConfigurationProperty: kendra.CfnDataSource.ConfluenceBlogConfigurationProperty = {
  blogFieldMappings: [{
    dataSourceFieldName: 'dataSourceFieldName',
    indexFieldName: 'indexFieldName',

    // the properties below are optional
    dateFieldFormat: 'dateFieldFormat',
  }],
};

Properties

NameTypeDescription
blogFieldMappings?IResolvable | IResolvable | ConfluenceBlogToIndexFieldMappingProperty[]Maps attributes or field names of Confluence blogs to Amazon Kendra index field names.

blogFieldMappings?

Type: IResolvable | IResolvable | ConfluenceBlogToIndexFieldMappingProperty[] (optional)

Maps attributes or field names of Confluence blogs to Amazon Kendra index field names.

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.