- 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.