Skip to content

featurebyte.SnowflakeDetails

class SnowflakeDetails(
*,
account: StrictStr,
warehouse: StrictStr,
database: StrictStr,
sf_schema: StrictStr
)

Description

Model for details used to connect to a Snowflake data source.

Parameters

  • account: StrictStr
    The host account name which can be found using one of the following formats:
    - For Amazon Web Services US West, use<account>.snowflakecomputing.com
    - For all other regions on Amazon Web Services, use <account>.<region>.snowflakecomputing.com
    - For all regions on Microsoft Azure, use <account>.<region>.azure.snowflakecomputing.com

  • warehouse: StrictStr
    The name of the warehouse containing the schema tables and columns.

  • database: StrictStr
    The name of the database containing the schema tables and columns.

  • sf_schema: StrictStr
    The name of the schema containing the database, tables and columns.

Examples

>>> details= fb.SnowflakeDetails(
...   account="<account>",
...   warehouse="snowflake",
...   database="<database_name>",
...   sf_schema="<schema_name>",
... )