Class CfnDataSourcePropsMixin.ConfluencePageConfigurationProperty
Configuration of the page settings for the Confluence data source.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Kendra
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDataSourcePropsMixin.ConfluencePageConfigurationProperty : CfnDataSourcePropsMixin.IConfluencePageConfigurationProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.ConfluencePageConfigurationProperty Implements CfnDataSourcePropsMixin.IConfluencePageConfigurationProperty
Remarks
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.CfnPropertyMixins.AWS.Kendra;
var confluencePageConfigurationProperty = new ConfluencePageConfigurationProperty {
PageFieldMappings = new [] { new ConfluencePageToIndexFieldMappingProperty {
DataSourceFieldName = "dataSourceFieldName",
DateFieldFormat = "dateFieldFormat",
IndexFieldName = "indexFieldName"
} }
};
Synopsis
Constructors
| ConfluencePageConfigurationProperty() | Configuration of the page settings for the Confluence data source. |
Properties
| PageFieldMappings | Maps attributes or field names of Confluence pages to Amazon Kendra index field names. |
Constructors
ConfluencePageConfigurationProperty()
Configuration of the page settings for the Confluence data source.
public ConfluencePageConfigurationProperty()
Remarks
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.CfnPropertyMixins.AWS.Kendra;
var confluencePageConfigurationProperty = new ConfluencePageConfigurationProperty {
PageFieldMappings = new [] { new ConfluencePageToIndexFieldMappingProperty {
DataSourceFieldName = "dataSourceFieldName",
DateFieldFormat = "dateFieldFormat",
IndexFieldName = "indexFieldName"
} }
};
Properties
PageFieldMappings
Maps attributes or field names of Confluence pages to Amazon Kendra index field names.
public object? PageFieldMappings { get; set; }
Property Value
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 PageFieldMappings parameter, you must specify at least one field mapping.
Type union: either IResolvable or (either IResolvable or CfnDataSourcePropsMixin.IConfluencePageToIndexFieldMappingProperty)[]