Module Values.RedshiftServerlessAuthConfigurationSource

Specifies configurations for authentication to a Redshift Serverless. 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_ : RedshiftServerlessAuthType.t;
    (*

    The type of authentication to use.

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

    The ARN of an Secrets Manager secret for authentication.

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