You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NB: Using the JSON Messsage Generator option it is possible to format messages differently for different viewing platforms. Find out more on the [AWS SNS docs](http://docs.aws.amazon.com/sns/latest/dg/PublishTopic.html).
645
+
NB: Using the JSON Messsage Generator option it is possible to format messages differently for different viewing platforms. Find out more on the [AWS SNS docs](https://docs.aws.amazon.com/sns/latest/dg/PublishTopic.html).
646
646
647
647
#### Viewing the output of the lambda Function
648
648
@@ -768,7 +768,7 @@ NB: Using the JSON Messsage Generator option it is possible to format messages d
768
768
})
769
769
```
770
770
771
-
More info on testing lambda functions locally can be found [here](https://medium.com/@AdamRNeary/developing-and-testing-amazon-lambda-functions-e590fac85df4#.romz6yjwv) and an example of testing by mocking the context object can be found [here](http://codedad.net/2016/01/03/test-aws-lambda-function-without-aws/).
771
+
More info on testing lambda functions locally can be found [here](https://medium.com/@AdamRNeary/developing-and-testing-amazon-lambda-functions-e590fac85df4#.romz6yjwv) and an example of testing by mocking the context object can be found [here](https://codedad.net/2016/01/03/test-aws-lambda-function-without-aws/).
772
772
773
773
3. **Using grunt-aws-lambda plugin**
774
774
@@ -783,7 +783,7 @@ Start by creating a blank AWS Lambda function that will be called whenever a new
783
783
#### Set up SES
784
784
For this you need your own domain, and you need to verify the domain with AWS, this can take up to 72hrs, so have a nice drink and chill out while you wait :sunglasses: :coffee:
785
785
786
-
See here for how: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-domain-procedure.html
786
+
See here for how: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-domain-procedure.html
787
787
788
788
#### Add a rule set
789
789
Click `rulesets` on the bottom left and create a new rule set with whatever name you like. If you want to have your function triggered by emails sent to any address in your domain you can leave recipient blank, else you can add the recipient you want to trigger the function.
@@ -1050,7 +1050,7 @@ In this example will build a script that will execute the neccessary steps to up
1050
1050
1051
1051
We will be writing our own bash script that will involve the use of some of the AWS CLI commands. Follow these instructions on how to get set up with the AWS CLI on your local machine:
1052
1052
1053
-
1. If you haven't already done so, set up an account with AWS **[here](http://aws.amazon.com/)**.
1053
+
1. If you haven't already done so, set up an account with AWS **[here](https://aws.amazon.com/)**.
1054
1054
1055
1055
2.You'll then need to get your 'accesskeyID' and 'secretaccesskey' by doing the following:
1056
1056
* Open the IAM console
@@ -1062,7 +1062,7 @@ We will be writing our own bash script that will involve the use of some of the
* Click 'DownloadCredentials' and store them in a secure location
1064
1064
1065
-
3. Install the AWS CLI via a method of your choice **[here](http://docs.aws.amazon.com/cli/latest/userguide/installing.html)**.
1065
+
3. Install the AWS CLI via a method of your choice **[here](https://docs.aws.amazon.com/cli/latest/userguide/installing.html)**.
1066
1066
1067
1067
4. Once it'sinstalledyouhavetoconfigureit. Type```aws configure```inthecommandline. Youshouldseesomethinglikethis:
1068
1068
```bash
@@ -1567,7 +1567,7 @@ Using aliases means that calling event source doesn't have to know the specific
1567
1567
* new versions to easily be promoted or rolled back (aliases can easily be mapped to different function versions)
1568
1568
* easier event source mappings - more control over which versions of your function are used with specific event sources in your development environment
1569
1569
1570
-
Walkthrough of implementing [versioning](http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases-walkthrough1.html) and [aliasing](http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases-walkthrough1.html) using the AWS CLI on the AWS Lambda docs.
1570
+
Walkthrough of implementing [versioning](https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases-walkthrough1.html) and [aliasing](https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases-walkthrough1.html) using the AWS CLI on the AWS Lambda docs.
1571
1571
1572
1572
### Create an API with GET/POST Methods that uses Lambda functions to retrieve/update records from a DynamoDB table
1573
1573
@@ -1829,7 +1829,7 @@ Here are the steps to set up the Serverless example project 'serverless-starter'
3. Next you're going to have to install the AWS CLI if you haven't already done so. You can do so via any of the methods **[here](http://docs.aws.amazon.com/cli/latest/userguide/installing.html)**. Once you've done that, type the ```aws configure``` command into the command line. Use the Access ID and Secret Access ID from the user you just set up, select your region and then press enter for the last option:
1832
+
3. Next you're going to have to install the AWS CLI if you haven't already done so. You can do so via any of the methods **[here](https://docs.aws.amazon.com/cli/latest/userguide/installing.html)**. Once you've done that, type the ```aws configure``` command into the command line. Use the Access ID and Secret Access ID from the user you just set up, select your region and then press enter for the last option:
1833
1833
1834
1834
```bash
1835
1835
$ aws configure
@@ -1945,14 +1945,14 @@ _(The Serverless framework automates a lot of the processes that we have covered
0 commit comments