AccountParameter

Snowflake Documentation

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

Examples

Python

account_parameter = AccountParameter(
    name="some_parameter",
    value="some_value",
)

YAML

account_parameters:
  - name: some_parameter
    value: some_value

Fields

  • name (string, required) - The name of the account parameter.

  • value (Any, required) - The value to set for the account parameter.

Last updated