0

I am going through the AWS Create Lambda Function and Test it Manually (2.3) tutorial, and I used aws CLI, to create a function called ProcessDynamoDBStream. It is supposed to process DB events.

I called this function manually as stated in the tutorial and I had a success return output. I went to my Function section in my console to view the metrics of that function but I cannot find ProcessDynamoDBStream in my Functions.

What could be the problem?

Thank You

1
  • 1
    Please check the region in function and in console. Commented Jun 19, 2017 at 10:22

1 Answer 1

1

If you followed the tutorial statement by statement, the function was created in North Virginia (us-east-1).

as stated here:

$ aws lambda create-function \
--region us-east-1 \
--function-name ProcessDynamoDBStream \

If this region was not present, the CLI deploys into your default region. You can check your default region by entering the following command (you can skip through without entering any value):

aws configure

output:

AWS Access Key ID [****************]: AWS Secret Access Key [****************]:
Default region name [eu-central-1]:
Default output format [json]:

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.