Skip to content

hazelcast-guides/serverless-fraud-detection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 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: {
                    ...
                }
            }
        },
        properties: {
            // For DEV, use https://test.dev.hazelcast.cloud
            'hazelcast.client.cloud.url': 'https://uat.hazelcast.cloud',
            ...
        }
    }
};