Module Values.SnowflakeRoleConfigurationSource

Optionally configure a Snowflake role. Otherwise the default user role will be used.

Sourcetype nonrec t = {
  1. enabled : BooleanObject.t option;
    (*

    Enable Snowflake role

    *)
  2. snowflakeRole : SnowflakeRole.t option;
    (*

    The Snowflake role you wish to configure

    *)
}
Sourceval make : ?enabled:??? -> ?snowflakeRole:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanObject.t | `String of SnowflakeRole.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