Show / Hide Table of Contents

Class CfnDataSourcePropsMixin.ConfluenceAttachmentConfigurationProperty

Configuration of attachment settings for the Confluence data source.

Inheritance
object
CfnDataSourcePropsMixin.ConfluenceAttachmentConfigurationProperty
Implements
CfnDataSourcePropsMixin.IConfluenceAttachmentConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Kendra
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDataSourcePropsMixin.ConfluenceAttachmentConfigurationProperty : CfnDataSourcePropsMixin.IConfluenceAttachmentConfigurationProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.ConfluenceAttachmentConfigurationProperty Implements CfnDataSourcePropsMixin.IConfluenceAttachmentConfigurationProperty
Remarks

Attachment settings are optional, if you don't specify settings attachments, Amazon Kendra won't index them.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceattachmentconfiguration.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.CfnPropertyMixins.AWS.Kendra;

             var confluenceAttachmentConfigurationProperty = new ConfluenceAttachmentConfigurationProperty {
                 AttachmentFieldMappings = new [] { new ConfluenceAttachmentToIndexFieldMappingProperty {
                     DataSourceFieldName = "dataSourceFieldName",
                     DateFieldFormat = "dateFieldFormat",
                     IndexFieldName = "indexFieldName"
                 } },
                 CrawlAttachments = false
             };

Synopsis

Constructors

ConfluenceAttachmentConfigurationProperty()

Configuration of attachment settings for the Confluence data source.

Properties

AttachmentFieldMappings

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

CrawlAttachments

TRUE to index attachments of pages and blogs in Confluence.

Constructors

ConfluenceAttachmentConfigurationProperty()

Configuration of attachment settings for the Confluence data source.

public ConfluenceAttachmentConfigurationProperty()
Remarks

Attachment settings are optional, if you don't specify settings attachments, Amazon Kendra won't index them.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceattachmentconfiguration.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.CfnPropertyMixins.AWS.Kendra;

             var confluenceAttachmentConfigurationProperty = new ConfluenceAttachmentConfigurationProperty {
                 AttachmentFieldMappings = new [] { new ConfluenceAttachmentToIndexFieldMappingProperty {
                     DataSourceFieldName = "dataSourceFieldName",
                     DateFieldFormat = "dateFieldFormat",
                     IndexFieldName = "indexFieldName"
                 } },
                 CrawlAttachments = false
             };

Properties

AttachmentFieldMappings

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

public object? AttachmentFieldMappings { get; set; }
Property Value

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 AttachentFieldMappings parameter, you must specify at least one field mapping.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceattachmentconfiguration.html#cfn-kendra-datasource-confluenceattachmentconfiguration-attachmentfieldmappings

Type union: either IResolvable or (either IResolvable or CfnDataSourcePropsMixin.IConfluenceAttachmentToIndexFieldMappingProperty)[]

CrawlAttachments

TRUE to index attachments of pages and blogs in Confluence.

public object? CrawlAttachments { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceattachmentconfiguration.html#cfn-kendra-datasource-confluenceattachmentconfiguration-crawlattachments

Type union: either bool or IResolvable

Implements

CfnDataSourcePropsMixin.IConfluenceAttachmentConfigurationProperty
Back to top Generated by DocFX