Show / Hide Table of Contents

Interface CfnDataSource.IConfluenceBlogConfigurationProperty

Configuration of blog settings for the Confluence data source.

Namespace: Amazon.CDK.AWS.Kendra
Assembly: Amazon.CDK.AWS.Kendra.dll
Syntax (csharp)
public interface IConfluenceBlogConfigurationProperty
Syntax (vb)
Public Interface IConfluenceBlogConfigurationProperty
Remarks

Blogs are always indexed unless filtered from the index by the ExclusionPatterns or InclusionPatterns fields in the ConfluenceConfiguration object.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceblogconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Kendra;

var confluenceBlogConfigurationProperty = new ConfluenceBlogConfigurationProperty {
    BlogFieldMappings = new [] { new ConfluenceBlogToIndexFieldMappingProperty {
        DataSourceFieldName = "dataSourceFieldName",
        IndexFieldName = "indexFieldName",

        // the properties below are optional
        DateFieldFormat = "dateFieldFormat"
    } }
};

Synopsis

Properties

BlogFieldMappings

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

Properties

BlogFieldMappings

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

virtual object BlogFieldMappings { get; }
Property Value

System.Object

Remarks

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceblogconfiguration.html#cfn-kendra-datasource-confluenceblogconfiguration-blogfieldmappings

Back to top Generated by DocFX