Skip to content

kthope/serverless-fraud-detection

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Serverless Fraud Detection

This is an example of how to use a Viridian Serverless cluster as a fast cache for static data that is used by an AWS Lambda function to contextualize transactions and detect fraud.

Tip
For step-by-step instructions of how to run this app, see the tutorial.

Internal Hazelcast Developers

If you want to try this tutorial in the UAT or DEV environment, edit the hazelcast.js file to include the following settings:

let createClientConfig = () => {
    return {
        network: {
            ...
            },
            ssl: {
                ...
                sslOptions: {
                    ...
                    // Otherwise the client will throw an error
                    // because the cluster's hostname doesn't match the one
                    // in the self-signed TLS certificate.
                    checkServerIdentity: () => null
                }
            }
        },
        properties: {
            // For DEV, use https://test.dev.hazelcast.cloud
            'hazelcast.client.cloud.url': 'https://uat.hazelcast.cloud',
            ...
        }
    }
};

About

Use Hazelcast and AWS Lambda to detect fraudulent transactions.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 98.5%
  • Shell 1.5%