-
Notifications
You must be signed in to change notification settings - Fork 0
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
Tony Cordova
committed
May 1, 2019
1 parent
5739fb2
commit 4e1b867
Showing
2 changed files
with
5 additions
and
29 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,35 +1,11 @@ | ||
{ | ||
"deploy_settings": { | ||
"default": { | ||
"skill_id": "amzn1.ask.skill.7b00fd1c-b906-4dc6-8d9c-c4cbe1ef69fc", | ||
"skill_id": "", | ||
"was_cloned": false, | ||
"merge": { | ||
"manifest": {} | ||
}, | ||
"resources": { | ||
"manifest": { | ||
"eTag": "3517b94184e7b2fce7b7f48ab23b2b92" | ||
}, | ||
"interactionModel": { | ||
"en-US": { | ||
"eTag": "18f1e29eab906e15a7e9db8f36fb48c4" | ||
} | ||
}, | ||
"lambda": [ | ||
{ | ||
"alexaUsage": [ | ||
"custom/default" | ||
], | ||
"arn": "arn:aws:lambda:us-east-1:859669077786:function:no-nicks", | ||
"awsRegion": "us-east-1", | ||
"codeUri": "lambda/custom", | ||
"functionName": "no-nicks", | ||
"handler": "index.handler", | ||
"revisionId": "ca9e8e48-f039-4d95-b12b-582f25abe71d", | ||
"runtime": "nodejs8.10" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -11,9 +11,9 @@ const utilities = require( 'utilities' ); | |
|
||
// You must specify these values to run this skill | ||
const INIT = { | ||
bucketName: 'no-nicks', // Required; Used for skill state management | ||
sandboxCustomerEmailId: '[email protected]', // Required*; If sandboxMode equals true; | ||
sellerId: 'AVX6ERM5QT1ZB', // Required; Amazon Pay seller ID | ||
bucketName: 'INSERT-YOUR-S3-BUCKET-NAME', // Required; Used for skill state management | ||
sandboxCustomerEmailId: 'INSERT-YOUR-SANDBOX-EMAIL-ADDRESS', // Required*; If sandboxMode equals true; | ||
sellerId: 'INSERT-YOUR-AMAZON-PAY-SELLER-ID', // Required; Amazon Pay seller ID | ||
}; | ||
|
||
// These attributes are used globally across US, EU, and JP | ||
|