Module Values.RedshiftCredentialsSource

Amazon Redshift credentials of a connection.

Sourcetype nonrec t = {
  1. secretArn : RedshiftCredentialsSecretArnString.t option;
    (*

    The secret ARN of the Amazon Redshift credentials of a connection.

    *)
  2. usernamePassword : UsernamePassword.t option;
    (*

    The username and password of the Amazon Redshift credentials of a connection.

    *)
}
Sourceval make : ?secretArn:??? -> ?usernamePassword:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RedshiftCredentialsSecretArnString.t | `Structure of (string * [> `String of Password.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