Module Values.RedshiftProvisionedAuthConfigurationSource

Contains configurations for authentication to an Amazon Redshift provisioned data warehouse. Specify the type of authentication to use in the type field and include the corresponding field. If you specify IAM authentication, you don't need to include another field.

Sourcetype nonrec t = {
  1. type_ : RedshiftProvisionedAuthType.t;
    (*

    The type of authentication to use.

    *)
  2. databaseUser : String_.t option;
    (*

    The database username for authentication to an Amazon Redshift provisioned data warehouse.

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

    The ARN of an Secrets Manager secret for authentication.

    *)
}
Sourceval context_ : string
Sourceval make : ?databaseUser:??? -> ?usernamePasswordSecretArn:??? -> type_:RedshiftProvisionedAuthType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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