Module Values.SnowflakeTableReferenceSource

A reference to a table within Snowflake.

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

    The secret ARN of the Snowflake table reference.

    *)
  2. accountIdentifier : SnowflakeAccountIdentifier.t;
    (*

    The account identifier for the Snowflake table reference.

    *)
  3. databaseName : SnowflakeDatabaseName.t;
    (*

    The name of the database the Snowflake table belongs to.

    *)
  4. tableName : SnowflakeTableName.t;
    (*

    The name of the Snowflake table.

    *)
  5. schemaName : SnowflakeSchemaName.t;
    (*

    The schema name of the Snowflake table reference.

    *)
  6. tableSchema : SnowflakeTableSchema.t;
    (*

    The schema of the Snowflake table.

    *)
}
Sourceval context_ : string
Sourceval make : secretArn:SecretsManagerArn.t -> accountIdentifier:SnowflakeAccountIdentifier.t -> databaseName:SnowflakeDatabaseName.t -> tableName:SnowflakeTableName.t -> schemaName:SnowflakeSchemaName.t -> tableSchema:SnowflakeTableSchema.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SecretsManagerArn.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of ColumnName.t ]) list ] list ]) 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