-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
aws
committed
Jan 20, 2020
1 parent
77c1d98
commit 14d8efe
Showing
93 changed files
with
68,556 additions
and
2,990 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,33 @@ | ||
/* | ||
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* Copyright 2010-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
*/ | ||
exports.GreengrassInterfaceVersion = '1.4'; | ||
exports.Lambda = require('./lambda'); | ||
exports.IotData = require('./iotdata'); | ||
exports.SecretsManager = require('./secretsmanager'); | ||
exports.GreengrassInterfaceVersion = '1.5'; | ||
|
||
/** | ||
* @namespace aws-greengrass-core-sdk | ||
*/ | ||
|
||
const fail = (name, error) => { | ||
console.error(`Unable to load aws-greengrass-core-sdk.${name} due to: `, error); | ||
}; | ||
|
||
try { | ||
exports.Lambda = require('./lambda'); | ||
} catch (e) { | ||
fail('Lambda', e); | ||
} | ||
try { | ||
exports.IotData = require('./iotdata'); | ||
} catch (e) { | ||
fail('IotData', e); | ||
} | ||
try { | ||
exports.SecretsManager = require('./secretsmanager'); | ||
} catch (e) { | ||
fail('SecretsManager', e); | ||
} | ||
try { | ||
exports.StreamManager = require('./stream-manager'); | ||
} catch (e) { | ||
fail('StreamManager', e); | ||
} |
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
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,17 @@ | ||
{ | ||
"name": "aws-greengrass-core-sdk", | ||
"version": "1.6.0", | ||
"main": "index.js", | ||
"dependencies": { | ||
"cbor": "5.0.1" | ||
}, | ||
"license": "Apache-2.0", | ||
"author": { | ||
"name": "Amazon Web Services", | ||
"url": "https://aws.amazon.com" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/aws/aws-greengrass-core-sdk-js" | ||
} | ||
} |
Oops, something went wrong.