Module Values.ProxyConfigurationSource

Provides the configuration information for a web proxy to connect to website hosts.

Sourcetype nonrec t = {
  1. host : Host.t;
    (*

    The name of the website host you want to connect to via a web proxy server. For example, the host name of https://a.example.com/page1.html is "a.example.com".

    *)
  2. port : Port.t;
    (*

    The port number of the website host you want to connect to via a web proxy server. For example, the port for https://a.example.com/page1.html is 443, the standard port for HTTPS.

    *)
  3. credentials : SecretArn.t option;
    (*

    The Amazon Resource Name (ARN) of an Secrets Manager secret. You create a secret to store your credentials in Secrets Manager The credentials are optional. You use a secret if web proxy credentials are required to connect to a website host. Amazon Kendra currently support basic authentication to connect to a web proxy server. The secret stores your credentials.

    *)
}
Sourceval context_ : string
Sourceval make : ?credentials:??? -> host:Host.t -> port:Port.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Port.t | `String of Host.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t