This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const AWS = require('aws-sdk'); | |
const fraudDetector = new AWS.FraudDetector({ | |
region:'us-east-1' | |
}); | |
let params = { | |
detectorId: 'user_registration_fraud_detector', | |
entities: [ | |
{ | |
entityId: 'unknown', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const cdk = require('@aws-cdk/core'); | |
const sqs = require('@aws-cdk/aws-sqs'); | |
const apigateway = require('@aws-cdk/aws-apigateway'); | |
const iam = require('@aws-cdk/aws-iam'); | |
const lambda = require('@aws-cdk/aws-lambda'); | |
const {SqsEventSource} = require('@aws-cdk/aws-lambda-event-sources'); | |
const path = require('path'); | |
class AwsAsyncApiWithCdkStack extends cdk.Stack { | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Resources: | |
asyncApiMessageDLQ23A9B11D: | |
Type: AWS::SQS::Queue | |
Metadata: | |
aws:cdk:path: AwsAsyncApiWithCdkStack/asyncApiMessageDLQ/Resource | |
asyncApiMessageQueue8EE5ED5B: | |
Type: AWS::SQS::Queue | |
Properties: | |
RedrivePolicy: | |
deadLetterTargetArn: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Documentation for HAProxy | |
# http://code.google.com/p/haproxy-docs/w/list | |
# http://haproxy.1wt.eu/download/1.2/doc/architecture.txt | |
# NOTES: | |
# open files limits need to be > 256000, use ulimit -n to set (on most POSIX systems) | |
global | |
log 127.0.0.1 local0 | |
log 127.0.0.1 local1 notice |