File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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");
122122const 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
Original file line number Diff line number Diff line change 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" : {
You can’t perform that action at this time.
0 commit comments