Module Values_1.StarburstParametersSource

The parameters that are required to connect to a Starburst data source.

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

    The host name of the Starburst data source.

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

    The port for the Starburst data source.

    *)
  3. catalog : Catalog.t;
    (*

    The catalog name for the Starburst data source.

    *)
  4. productType : StarburstProductType.t option;
    (*

    The product type for the Starburst data source.

    *)
  5. databaseAccessControlRole : DatabaseAccessControlRole.t option;
    (*

    The database access control role.

    *)
  6. authenticationType : AuthenticationType.t option;
    (*

    The authentication type that you want to use for your connection. This parameter accepts OAuth and non-OAuth authentication types.

    *)
  7. oAuthParameters : OAuthParameters.t option;
    (*

    An object that contains information needed to create a data source connection between an Quick Sight account and Starburst.

    *)
}
Sourceval context_ : string
Sourceval make : ?productType:??? -> ?databaseAccessControlRole:??? -> ?authenticationType:??? -> ?oAuthParameters:??? -> host:Host.t -> port:Port.t -> catalog:Catalog.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Port.t | `String of Host.t | `Structure of (string * [> `String of TokenProviderUrl.t | `Structure of (string * [> `String of Values_0.Arn.t ]) list ]) list ]) 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