await createSnykOrg()

in functions/source/AddSnykIntegration/lambda_function.js [119:126]


        await createSnykOrg()
          .then(async (newOrgId) => {
            await createSnykIntegration(newOrgId)
              .then(async (output) => {
                // Tell CloudFormation we're done and that we succeeded.
                await cfnResponse.send(event, context, cfnResponse.SUCCESS, output);
              });
          });