From af6fcbc8500e944e947e7292de1cf4d9a6199bfa Mon Sep 17 00:00:00 2001 From: Gary Arora Date: Sun, 27 Jan 2019 11:23:02 -0500 Subject: [PATCH] updated readme --- README.md | 10 +++++----- package.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7189d8e..1e5b7bb 100644 --- a/README.md +++ b/README.md @@ -74,9 +74,9 @@ This API Gateway then triggers a Lambda function that has the `athena-express` l ```javascript const aws = require("aws-sdk"); const awsCredentials = { - region: "us-east-1", - accessKeyId: "AKIAIHV5B6DGMEXVCXGA", - secretAccessKey: "SWSDdQr/0skiHB9AApy1iCDuiJVEo/gJzlranDKY" + region: "YOUR_AWS_REGION", + accessKeyId: "YOUR_AWS_ACCESS_KEY_ID", + secretAccessKey: "YOUR_AWS_SECRET_ACCESS_KEY" }; aws.config.update(awsCredentials); @@ -122,10 +122,10 @@ const aws = require("aws-sdk"); const athenaExpressConfig = { aws, /* required */ s3: "STRING_VALUE", /* optional */ - db: "STRING_VALUE", /* optional */ + db: "STRING_VALUE", /* optional */ formatJson: BOOLEAN, /* optional default=true */ retry: Integer, /* optional default=200 */ - getStats: BOOLEAN /* optional default=false */ + getStats: BOOLEAN /* optional default=false */ }; //Initializing AthenaExpress diff --git a/package.json b/package.json index 45a4d69..c11bf09 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "athena-express", - "version": "3.1.4", + "version": "3.1.5", "description": "Athena-Express makes it easier to execute SQL queries on Amazon Athena by consolidating & astracting several methods in the AWS SDK", "main": "./lib/index.js", "scripts": {