- Categories:
Notification functions (Integration Configuration)
INTEGRATIONΒΆ
Returns a JSON object that specifies the notification integration to use to send a message. This is a helper function that you use to construct an integration configuration object for the SYSTEM$SEND_SNOWFLAKE_NOTIFICATION stored procedure.
- See also:
Using SYSTEM$SEND_SNOWFLAKE_NOTIFICATION to send notifications , SYSTEM$SEND_SNOWFLAKE_NOTIFICATION , EMAIL_INTEGRATION_CONFIG
SyntaxΒΆ
SNOWFLAKE.NOTIFICATION.INTEGRATION( '<integration_name>' )
ArgumentsΒΆ
'integration_name'
Name of the notification integration to use.
ReturnsΒΆ
A JSON-formatted string that specifies a notification integration for the SYSTEM$SEND_SNOWFLAKE_NOTIFICATION stored procedure to send.
For example, if you pass in the notification integration name 'my_queue_int'
, the function returns:
'{"my_queue_int":{}}'
ExamplesΒΆ
See Using SYSTEM$SEND_SNOWFLAKE_NOTIFICATION to send notifications.