Module Values.SnowflakeConnectorProfilePropertiesSource

The connector-specific profile properties required when using Snowflake.

Sourcetype nonrec t = {
  1. warehouse : Warehouse.t;
    (*

    The name of the Snowflake warehouse.

    *)
  2. stage : Stage.t;
    (*

    The name of the Amazon S3 stage that was created while setting up an Amazon S3 stage in the Snowflake account. This is written in the following format: < Database>< Schema><Stage Name>.

    *)
  3. bucketName : BucketName.t;
    (*

    The name of the Amazon S3 bucket associated with Snowflake.

    *)
  4. bucketPrefix : BucketPrefix.t option;
    (*

    The bucket path that refers to the Amazon S3 bucket associated with Snowflake.

    *)
  5. privateLinkServiceName : PrivateLinkServiceName.t option;
    (*

    The Snowflake Private Link service name to be used for private data transfers.

    *)
  6. accountName : AccountName.t option;
    (*

    The name of the account.

    *)
  7. region : Region.t option;
    (*

    The Amazon Web Services Region of the Snowflake account.

    *)
}
Sourceval context_ : string
Sourceval make : ?bucketPrefix:??? -> ?privateLinkServiceName:??? -> ?accountName:??? -> ?region:??? -> warehouse:Warehouse.t -> stage:Stage.t -> bucketName:BucketName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Warehouse.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