Ends in
00
days
00
hrs
00
mins
00
secs
ENROLL NOW

Get $4 OFF in AWS Solutions Architect & Data Engineer Associate Practice Exams for $10.99 each ONLY!

admin

About Jon Bonso

Jon Bonso is the co-founder of Tutorials Dojo, an EdTech startup and an AWS Digital Training Partner that provides high-quality educational materials in the cloud computing space. He graduated from Mapúa Institute of Technology in 2007 with a bachelor's degree in Information Technology. Jon holds 10 AWS Certifications and is also an active AWS Community Builder since 2020.

Released – AWS Certified DevOps Engineer Professional Practice Exams PLUS the Tutorials Dojo Practice Test Portal is Coming Soon!

2023-12-15T01:59:11+00:00

Released - AWS Certified DevOps Engineer Professional Practice Exams PLUS the Tutorials Dojo Practice Test Portal is Coming Soon! We are happy to announce the release of our 6th AWS practice test course - the AWS Certified DevOps Engineer Professional Practice Exams. It contains a total of 150 high-quality questions with complete explanations on correct and incorrect answers, visual images and diagrams, YouTube videos as needed, and also contains reference links to official AWS documentation as well as our cheat sheets and study guides. Through this link, you can get it at a super low price for 5 days only: [...]

Released – AWS Certified DevOps Engineer Professional Practice Exams PLUS the Tutorials Dojo Practice Test Portal is Coming Soon!2023-12-15T01:59:11+00:00

BLACK FRIDAY SALE! Get a Chance to WIN Any of our AWS Practice Tests for FREE

2023-12-15T02:39:50+00:00

BLACK FRIDAY SALE! Get a Chance to WIN Any of our AWS Practice Tests for FREE It's the biggest SALE of the year once again! And if rock bottom prices are not enough then we have something even more enticing for you. For five days only, if you get any 1 of our AWS practice test courses on Udemy using coupon code: TUTORIALSDOJO-2019 then you'll have a chance to be one of 30 lucky winners who will get any 1 of our other AWS practice tests for FREE!  Promo Mechanics: Promo Period: Nov 25, 2019 10PM AEDT to Nov 30, 2019 [...]

BLACK FRIDAY SALE! Get a Chance to WIN Any of our AWS Practice Tests for FREE2023-12-15T02:39:50+00:00

Our Thoughts on the Beta Exam for AWS Certified Solutions Architect Associate (SAA-C02)

2023-06-07T07:43:48+00:00

Our Thoughts on the Beta Exam for AWS Certified Solutions Architect Associate (SAA-C02) Mark your calendars! March 2020 is the expected standard exam availability of the new version for AWS Certified Solutions Architect Associate (SAA-C02). I took the beta exam this November in order to take a peek on the new technologies and scenarios that Amazon will probably add to the new exam version which they will release early next year.   My Preparation As always, I read the official exam guide for the new AWS exam version. I noticed that there are only 4 domains in the new version, compared with [...]

Our Thoughts on the Beta Exam for AWS Certified Solutions Architect Associate (SAA-C02)2023-06-07T07:43:48+00:00

IP Blocking: Use AWS WAF or NACL?

2023-08-14T02:45:24+00:00

What should you do if you identified a series of malicious attacks on your application coming from a specific IP address? Will you use AWS WAF to block that IP address or create a rule in your Network Access Control List to deny traffic from that IP? It is true that AWS WAF can filter web requests based on IP addresses, HTTP headers, HTTP body, or URI strings, to block common attack patterns, such as SQL injection or cross-site scripting. NACL, on the other hand, acts like a firewall for controlling traffic in and out of your subnets. If the [...]

IP Blocking: Use AWS WAF or NACL?2023-08-14T02:45:24+00:00

PRE-BLACK FRIDAY SALE – All of our AWS Practice Tests at Rock Bottom Prices!

2023-12-15T02:28:56+00:00

PRE-BLACK FRIDAY SALE: All of our AWS Practice Tests at Rock Bottom Prices! As you may already be aware, the biggest sale of the year is coming in a few weeks. Udemy's annual Black Friday sale will showcase all of the courses listed on their site at heavily discounted prices, including our AWS practice test courses.  If you can't wait until the Black Friday sale happening on the week of November 25 then we have some good news for you! For five days only, Tutorials Dojo is running a pre-Black Friday sale where all of our AWS practice exams are [...]

PRE-BLACK FRIDAY SALE – All of our AWS Practice Tests at Rock Bottom Prices!2023-12-15T02:28:56+00:00

Released – AWS Certified Cloud Practitioner Practice Exams

2020-08-18T08:44:12+00:00

Released - AWS Certified Cloud Practitioner Practice Exams It is with absolute delight that we announce the release of our newest course - the AWS Certified Cloud Practitioner Practice Exams. And for the first time ever, this course was 50% co-authored by one of our valued team members, Adrian Formaran, who has recently passed both the AWS Certified Cloud Practitioner and Solutions Architect Associate exams. x     x Get it through this link now: https://www.udemy.com/course/aws-certified-cloud-practitioner-practice-exams-amazon/?couponCode=NEW-CLOUDPRAC   (Discounted Price for a Limited Time and Valid only)   This practice test course is for anyone who is looking for a study [...]

Released – AWS Certified Cloud Practitioner Practice Exams2020-08-18T08:44:12+00:00

How to invalidate API Gateway Cache

2021-05-03T13:34:08+00:00

To invalidate an existing cache entry of a request and retrieve the latest data from the integration endpoint, one must send the request together with the Cache-Control: max-age=0 header. If the recipient is authorized to communicate directly to the integration endpoint, then the integration endpoint will respond with the latest data for the request. This also replaces the existing cache entry with the new response. The IAM Policy that grants a client to invalidate the cache follows: {   "Version": "2012-10-17",   "Statement": [     {       "Effect": "Allow",       "Action": [         "execute-api:InvalidateCache"       ],       "Resource": [ "arn:aws:execute-api:region:account-id:api-id/stage-name/GET/resource-path-specifier"       ]     }   ] }    An alternative option [...]

How to invalidate API Gateway Cache2021-05-03T13:34:08+00:00

Top 5 Free AWS Review Materials

2021-06-26T13:32:00+00:00

Currently, the cost of an AWS Certification exam starts from 150 USD for associate-level exams and up to a whopping 300 USD for professional-level and specialty-type exams. For some, this amount is negligible but to many IT professionals around the world, this amount is relatively expensive. The official AWS Practice Exam ranges from 20 to 40 USD, which you can only take once (unless you shell out another $20 or $40 again in order to retake it). On top of it, there are a lot of people who subscribe to online cloud learning providers which can range from $30 to $38 per month or [...]

Top 5 Free AWS Review Materials2021-06-26T13:32:00+00:00

Instrumenting your Application with AWS X-Ray

2023-08-14T02:52:58+00:00

Bookmarks Instrumenting your Node.js application Instrumenting your Java application Instrumenting your C# .Net application Instrumenting your Python application Instrumenting your Go application Instrumenting your Node.js application The AWS X-Ray SDK for Node.js provides middleware that you can use to instrument incoming HTTP requests. You need to add the SDK to your application’s dependencies, usually via package.json. Initialize the SDK client and add it to your application prior to declaring routes. var AWSXRay = require('aws-xray-sdk'); AWSXRay.setDaemonAddress('host:port'); app.use(AWSXRay.express.openSegment('MyApp'));       3. Lastly, use the SDK exceptions after declaring routes. app.get('/', function (req, res) [...]

Instrumenting your Application with AWS X-Ray2023-08-14T02:52:58+00:00

Calculating the Required Read and Write Capacity Unit for your DynamoDB Table

2021-05-04T09:10:25+00:00

Read Capacity Unit On-Demand Mode When you choose on-demand mode, DynamoDB instantly accommodates your workloads as they ramp up or down to any previously reached traffic level. If a workload’s traffic level hits a new peak, DynamoDB adapts rapidly to accommodate the workload. The request rate is only limited by the DynamoDB throughput default table limits, but it can be raised upon request. For on-demand mode tables, you don't need to specify how much read throughput you expect your application to perform. DynamoDB charges you for the reads that your application performs on your tables in terms of read request [...]

Calculating the Required Read and Write Capacity Unit for your DynamoDB Table2021-05-04T09:10:25+00:00

AWS, Azure, and GCP Certifications are consistently among the top-paying IT certifications in the world, considering that most companies have now shifted to the cloud. Earn over $150,000 per year with an AWS, Azure, or GCP certification!

Follow us on LinkedIn, Facebook, or join our Slack study group. More importantly, answer as many practice exams as you can to help increase your chances of passing your certification exams on your first try!