Values.ConfluenceSourceConfigurationSourceThe endpoint information to connect to your Confluence data source.
type nonrec t = {hostUrl : HttpsUrl.t;The Confluence host URL or instance URL.
*)hostType : ConfluenceHostType.t;The supported host type, whether online/cloud or server/on-premises.
*)authType : ConfluenceAuthType.t;The supported authentication type to authenticate and connect to your Confluence instance.
*)credentialsSecretArn : SecretArn.t;The Amazon Resource Name of an Secrets Manager secret that stores your authentication credentials for your Confluence instance URL. For more information on the key-value pairs that must be included in your secret, depending on your authentication type, see Confluence connection configuration.
*)}val make :
hostUrl:HttpsUrl.t ->
hostType:ConfluenceHostType.t ->
authType:ConfluenceAuthType.t ->
credentialsSecretArn:SecretArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of (string * [> `Enum of string | `String of HttpsUrl.t ]) list ]