Skip to content

AccountParameter

Snowflake Documentation | Snowcap CLI label: account_parameter

An account parameter in Snowflake that allows you to set or alter account-level parameters.

For a complete list of available parameters, see the Snowflake Parameters Reference.

Examples

YAML

account_parameters:
  - name: TIMEZONE
    value: America/New_York

  - name: STATEMENT_TIMEOUT_IN_SECONDS
    value: 3600

Python

account_parameter = AccountParameter(
    name="TIMEZONE",
    value="America/New_York",
)

Fields

  • name (string, required) - The name of the account parameter. See the Snowflake Parameters Reference for valid parameter names.
  • value (Any, required) - The value to set for the account parameter.

Note: Requires ACCOUNTADMIN role. This privilege cannot be granted to other roles. See Snowflake Permissions for details.