Skip to content

Commit af6fcbc

Browse files
author
Gary Arora
committed
updated readme
1 parent 41dc205 commit af6fcbc

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ This API Gateway then triggers a Lambda function that has the `athena-express` l
7474
```javascript
7575
const aws = require("aws-sdk");
7676
const awsCredentials = {
77-
region: "us-east-1",
78-
accessKeyId: "AKIAIHV5B6DGMEXVCXGA",
79-
secretAccessKey: "SWSDdQr/0skiHB9AApy1iCDuiJVEo/gJzlranDKY"
77+
region: "YOUR_AWS_REGION",
78+
accessKeyId: "YOUR_AWS_ACCESS_KEY_ID",
79+
secretAccessKey: "YOUR_AWS_SECRET_ACCESS_KEY"
8080
};
8181
aws.config.update(awsCredentials);
8282

@@ -122,10 +122,10 @@ const aws = require("aws-sdk");
122122
const athenaExpressConfig = {
123123
aws, /* required */
124124
s3: "STRING_VALUE", /* optional */
125-
db: "STRING_VALUE", /* optional */
125+
db: "STRING_VALUE", /* optional */
126126
formatJson: BOOLEAN, /* optional default=true */
127127
retry: Integer, /* optional default=200 */
128-
getStats: BOOLEAN /* optional default=false */
128+
getStats: BOOLEAN /* optional default=false */
129129
};
130130

131131
//Initializing AthenaExpress

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "athena-express",
3-
"version": "3.1.4",
3+
"version": "3.1.5",
44
"description": "Athena-Express makes it easier to execute SQL queries on Amazon Athena by consolidating & astracting several methods in the AWS SDK",
55
"main": "./lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)