├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── THIRD-PARTY ├── cognito-triggers ├── create-auth-challenge │ └── create-auth-challenge.js ├── define-auth-challenge │ └── define-auth-challenge.js ├── pre-sign-up │ └── pre-sign-up.js └── verify-auth-challenge-response │ └── verify-auth-challenge-response.js ├── my.properties ├── package.json ├── rekognition ├── create-collection │ └── create-collection.py └── index-faces │ └── index-faces.py └── template.yml /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/THIRD-PARTY -------------------------------------------------------------------------------- /cognito-triggers/create-auth-challenge/create-auth-challenge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/cognito-triggers/create-auth-challenge/create-auth-challenge.js -------------------------------------------------------------------------------- /cognito-triggers/define-auth-challenge/define-auth-challenge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/cognito-triggers/define-auth-challenge/define-auth-challenge.js -------------------------------------------------------------------------------- /cognito-triggers/pre-sign-up/pre-sign-up.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/cognito-triggers/pre-sign-up/pre-sign-up.js -------------------------------------------------------------------------------- /cognito-triggers/verify-auth-challenge-response/verify-auth-challenge-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/cognito-triggers/verify-auth-challenge-response/verify-auth-challenge-response.js -------------------------------------------------------------------------------- /my.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/my.properties -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/package.json -------------------------------------------------------------------------------- /rekognition/create-collection/create-collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/rekognition/create-collection/create-collection.py -------------------------------------------------------------------------------- /rekognition/index-faces/index-faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/rekognition/index-faces/index-faces.py -------------------------------------------------------------------------------- /template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cognito-facial-recognition-auth/HEAD/template.yml --------------------------------------------------------------------------------