Skip to content

Instantly share code, notes, and snippets.

View TharinduX's full-sized avatar
🎯
Focusing

Tharindu Jayasanka TharinduX

🎯
Focusing
View GitHub Profile
@onhate
onhate / pre-signup.ts
Last active December 19, 2024 13:59
Merge AWS Cognito External Provider User with Cognito User on Pre SignUp
import { PreSignUpTriggerEvent, PreSignUpTriggerHandler } from 'aws-lambda';
import { CognitoIdentityServiceProvider } from 'aws-sdk';
const cognito = new CognitoIdentityServiceProvider();
const knownProviderNames = {
google: 'Google',
facebook: 'Facebook'
};