-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1475 from simlu/master
fix: added src/core/aws.js
- Loading branch information
Showing
8 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"description": "Amazon Web Services SDK wrapper.", | ||
"details": [ | ||
"AWS SDK wrapper npm package." | ||
], | ||
"website": "https://github.com/blackflux/aws-sdk-wrap" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"description": "Configuration file for aws-sdk initiation.", | ||
"details": ["AWS SDK initialization file."], | ||
"formats": ["other"], | ||
"requires": ["aws-sdk-wrap", "aws"], | ||
"website": null | ||
} |
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
4 changes: 4 additions & 0 deletions
4
src/plugin/tasks/serverless/snippets/serverless/src/core/aws.js
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
const { logger } = require('lambda-monitor-logger'); | ||
const aws = require('aws-sdk-wrap')({ logger }); | ||
|
||
module.exports = aws; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"target": "src/core/aws.js", | ||
"format": "txt", | ||
"strategy": "create-only", | ||
"snippets": [ | ||
"serverless/src/core/aws.js" | ||
], | ||
"requires": [ | ||
"javascript" | ||
], | ||
"purpose": [ | ||
"Create aws sdk initialization file." | ||
] | ||
} |
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
4 changes: 4 additions & 0 deletions
4
test/projects/assorted/@sls-closedsource-dynamodb/src/core/aws.js
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
const { logger } = require('lambda-monitor-logger'); | ||
const aws = require('aws-sdk-wrap')({ logger }); | ||
|
||
module.exports = aws; |