Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ConfluenceConfiguration

import type { ConfluenceConfiguration } from "https://aws-api.deno.dev/v0.3/services/kendra.ts?docs=full";

Provides configuration information for data sources that connect to Confluence.

interface ConfluenceConfiguration {
AttachmentConfiguration?: ConfluenceAttachmentConfiguration | null;
BlogConfiguration?: ConfluenceBlogConfiguration | null;
ExclusionPatterns?: string[] | null;
InclusionPatterns?: string[] | null;
PageConfiguration?: ConfluencePageConfiguration | null;
SecretArn: string;
ServerUrl: string;
SpaceConfiguration?: ConfluenceSpaceConfiguration | null;
VpcConfiguration?: DataSourceVpcConfiguration | null;
}

§Properties

§
AttachmentConfiguration?: ConfluenceAttachmentConfiguration | null
[src]

Specifies configuration information for indexing attachments to Confluence blogs and pages.

§
BlogConfiguration?: ConfluenceBlogConfiguration | null
[src]

Specifies configuration information for indexing Confluence blogs.

§
ExclusionPatterns?: string[] | null
[src]

A list of regular expression patterns that apply to a URL on the Confluence server. An exclusion pattern can apply to a blog post, a page, a space, or an attachment. Items that match the pattern are excluded from the index. Items that don't match the pattern are included in the index. If a item matches both an exclusion pattern and an inclusion pattern, the item isn't included in the index.

§
InclusionPatterns?: string[] | null
[src]

A list of regular expression patterns that apply to a URL on the Confluence server. An inclusion pattern can apply to a blog post, a page, a space, or an attachment. Items that match the patterns are included in the index. Items that don't match the pattern are excluded from the index. If an item matches both an inclusion pattern and an exclusion pattern, the item isn't included in the index.

§
PageConfiguration?: ConfluencePageConfiguration | null
[src]

Specifies configuration information for indexing Confluence pages.

§
SecretArn: string
[src]

The Amazon Resource Name (ARN) of an Secrets Manager secret that contains the key/value pairs required to connect to your Confluence server. The secret must contain a JSON structure with the following keys:

  • username - The user name or email address of a user with administrative privileges for the Confluence server.
  • password - The password associated with the user logging in to the Confluence server.
§
ServerUrl: string
[src]

The URL of your Confluence instance. Use the full URL of the server. For example, https://server.example.com:port/. You can also use an IP address, for example, https://192.168.1.113/.

§
SpaceConfiguration?: ConfluenceSpaceConfiguration | null
[src]

Specifies configuration information for indexing Confluence spaces.

§

Specifies the version of the Confluence installation that you are connecting to.

§
VpcConfiguration?: DataSourceVpcConfiguration | null
[src]

Specifies the information for connecting to an Amazon VPC.