- Categories:
User & Security DDL (Third-Party Service Integrations)
DESCRIBE INTEGRATION¶
Describes the properties of an integration.
DESCRIBE can be abbreviated to DESC.
- See also:
- API integrations
- Notification integrations
ALTER NOTIFICATION INTEGRATION , CREATE NOTIFICATION INTEGRATION
- Security integrations
- Storage integrations
Syntax¶
DESC[RIBE] [ { API | NOTIFICATION | SECURITY | STORAGE } ] INTEGRATION <name>
Parameters¶
name
Specifies the identifier for the integration to describe. If the identifier contains spaces or special characters, the entire string must be enclosed in double quotes. Identifiers enclosed in double quotes are also case-sensitive.
Usage Notes¶
To post-process the output of this command, you can use the RESULT_SCAN function, which treats the output as a table that can be queried.
Examples¶
Create a notification integration:
CREATE NOTIFICATION INTEGRATION myint ( ... );
Describe the columns in the integration:
DESC INTEGRATION myint;