logo
pub struct ConfluenceConfiguration {
    pub attachment_configuration: Option<ConfluenceAttachmentConfiguration>,
    pub blog_configuration: Option<ConfluenceBlogConfiguration>,
    pub exclusion_patterns: Option<Vec<String>>,
    pub inclusion_patterns: Option<Vec<String>>,
    pub page_configuration: Option<ConfluencePageConfiguration>,
    pub secret_arn: String,
    pub server_url: String,
    pub space_configuration: Option<ConfluenceSpaceConfiguration>,
    pub version: String,
    pub vpc_configuration: Option<DataSourceVpcConfiguration>,
}
Expand description

Provides configuration information for data sources that connect to Confluence.

Fields

attachment_configuration: Option<ConfluenceAttachmentConfiguration>

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

blog_configuration: Option<ConfluenceBlogConfiguration>

Specifies configuration information for indexing Confluence blogs.

exclusion_patterns: Option<Vec<String>>

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.

inclusion_patterns: Option<Vec<String>>

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.

page_configuration: Option<ConfluencePageConfiguration>

Specifies configuration information for indexing Confluence pages.

secret_arn: String

The Amazon Resource Name (ARN) of an AWS 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.

server_url: String

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/.

space_configuration: Option<ConfluenceSpaceConfiguration>

Specifies configuration information for indexing Confluence spaces.

version: String

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

vpc_configuration: Option<DataSourceVpcConfiguration>

Specifies the information for connecting to an Amazon VPC.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more