credentials_snippets_py
New snowflake integration from credential
snowflake_client = yepcode.integration.snowflake("my-company-snowflake");
New SQS listener using a credential
const sqsListener = yepcode.listener.awsSqs("my-sqs-queue");
note
Currently this integration helper only supports plain strings. Expressions or passing a value through a variable is not supported. Therefore, the code examples below will NOT work.
❌ This doesn't work
credential_name = "my-company-snowflake";
snowflake_client = yepcode.integration.snowflake(credential_name);
❌ This doesn't work
snowflake_client = yepcode.integration.snowflake(
"my-company-snowflake" if environment === "production" else "my-company-snowflake-staging"
);