Module Values_1.RedshiftParametersSource

The parameters for Amazon Redshift. The ClusterId field can be blank if Host and Port are both set. The Host and Port fields can be blank if the ClusterId field is set.

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

    Host. This field can be blank if ClusterId is provided.

    *)
  2. port : OptionalPort.t option;
    (*

    Port. This field can be blank if the ClusterId is provided.

    *)
  3. database : Database.t;
    (*

    Database.

    *)
  4. clusterId : ClusterId.t option;
    (*

    Cluster ID. This field can be blank if the Host and Port are provided.

    *)
  5. iAMParameters : RedshiftIAMParameters.t option;
    (*

    An optional parameter that uses IAM authentication to grant Quick Sight access to your cluster. This parameter can be used instead of DataSourceCredentials.

    *)
  6. identityCenterConfiguration : IdentityCenterConfiguration.t option;
    (*

    An optional parameter that configures IAM Identity Center authentication to grant Quick Sight access to your cluster. This parameter can only be specified if your Quick Sight account is configured with IAM Identity Center.

    *)
}
Sourceval context_ : string
Sourceval make : ?host:??? -> ?port:??? -> ?clusterId:??? -> ?iAMParameters:??? -> ?identityCenterConfiguration:??? -> database:Database.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of OptionalPort.t | `String of Host.t | `Structure of (string * [> `Boolean of Values_0.Boolean.t | `List of [> `String of DatabaseGroup.t ] list | `String of Values_0.RoleArn.t ]) 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