Values.ConfluenceConfigurationSourceProvides the configuration information to connect to Confluence as your data source.
type nonrec t = {serverUrl : Url.t;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/.
*)secretArn : SecretArn.t;The Amazon Resource Name (ARN) of an Secrets Manager secret that contains the user name and password required to connect to the Confluence instance. If you use Confluence Cloud, you use a generated API token as the password. You can also provide authentication credentials in the form of a personal access token. For more information, see Using a Confluence data source.
*)version : ConfluenceVersion.t;The version or the type of Confluence installation to connect to.
*)spaceConfiguration : ConfluenceSpaceConfiguration.t option;Configuration information for indexing Confluence spaces.
*)pageConfiguration : ConfluencePageConfiguration.t option;Configuration information for indexing Confluence pages.
*)blogConfiguration : ConfluenceBlogConfiguration.t option;Configuration information for indexing Confluence blogs.
*)attachmentConfiguration : ConfluenceAttachmentConfiguration.t option;Configuration information for indexing attachments to Confluence blogs and pages.
*)vpcConfiguration : DataSourceVpcConfiguration.t option;Configuration information for an Amazon Virtual Private Cloud to connect to your Confluence. For more information, see Configuring a VPC.
*)inclusionPatterns : DataSourceInclusionsExclusionsStrings.t option;A list of regular expression patterns to include certain blog posts, pages, spaces, or attachments in your Confluence. Content that matches the patterns are included in the index. Content that doesn't match the patterns is excluded from the index. If content matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the content isn't included in the index.
*)exclusionPatterns : DataSourceInclusionsExclusionsStrings.t option;A list of regular expression patterns to exclude certain blog posts, pages, spaces, or attachments in your Confluence. Content that matches the patterns are excluded from the index. Content that doesn't match the patterns is included in the index. If content matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the content isn't included in the index.
*)proxyConfiguration : ProxyConfiguration.t option;Configuration information to connect to your Confluence URL instance via a web proxy. You can use this option for Confluence Server. You must provide the website host name and port number. For example, the host name of https://a.example.com/page1.html is "a.example.com" and the port is 443, the standard port for HTTPS. Web proxy credentials are optional and you can use them to connect to a web proxy server that requires basic authentication of user name and password. To store web proxy credentials, you use a secret in Secrets Manager. It is recommended that you follow best security practices when configuring your web proxy. This includes setting up throttling, setting up logging and monitoring, and applying security patches on a regular basis. If you use your web proxy with multiple data sources, sync jobs that occur at the same time could strain the load on your proxy. It is recommended you prepare your proxy beforehand for any security and load requirements.
*)authenticationType : ConfluenceAuthenticationType.t option;Whether you want to connect to Confluence using basic authentication of user name and password, or a personal access token. You can use a personal access token for Confluence Server.
*)}val make :
?spaceConfiguration:??? ->
?pageConfiguration:??? ->
?blogConfiguration:??? ->
?attachmentConfiguration:??? ->
?vpcConfiguration:??? ->
?inclusionPatterns:??? ->
?exclusionPatterns:??? ->
?proxyConfiguration:??? ->
?authenticationType:??? ->
serverUrl:Url.t ->
secretArn:SecretArn.t ->
version:ConfluenceVersion.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of
[> `String of DataSourceInclusionsExclusionsStringsMember.t ] list
| `String of Url.t
| `Structure of
(string
* [> `Boolean of Boolean.t
| `Integer of Port.t
| `List of
[> `String of ConfluenceSpaceIdentifier.t
| `Structure of
(string
* [> `Enum of string
| `String of DataSourceDateFieldFormat.t ])
list ]
list
| `String of Host.t ])
list ])
list ]