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!

aws tutorial

Home » aws tutorial » Page 9

Elastic Fabric Adapter (EFA)

2023-06-23T05:53:26+00:00

Bookmarks Limitations Pricing Elastic Fabric Adapter (EFA) Cheat Sheet An Elastic Fabric Adapter (EFA) is a network device that you can attach to your Amazon EC2 instance to accelerate High Performance Computing (HPC) and machine learning applications. An EFA is an Elastic Network Adapter (ENA) with an additional OS-bypass functionality.  How It Works EFA integrates with  Libfabric 1.9.0 and it supports Open MPI 4.0.2 and Intel MPI 2019 Update 6 for HPC applications, and  Nvidia Collective Communications Library (NCCL) for machine learning applications. With an EFA, HPC applications use Intel Message Passing Interface (MPI) or [...]

Elastic Fabric Adapter (EFA)2023-06-23T05:53:26+00:00

Amazon GuardDuty

2023-07-11T03:22:09+00:00

Bookmarks How It Works GuardDuty Findings Trusted IP Lists and Threat Lists Pricing Validate Your Knowledge Amazon GuardDuty Cheat Sheet An intelligent threat detection service. It analyzes billions of events across your AWS accounts from AWS CloudTrail (AWS user and API activity in your accounts), Amazon VPC Flow Logs (network traffic data), and DNS Logs (name query patterns). How It Works GuardDuty is a regional service. Threat detection categories Reconnaissance -- Activity suggesting reconnaissance by an attacker, such as unusual API activity, intra-VPC port scanning, unusual patterns of failed login requests, or [...]

Amazon GuardDuty2023-07-11T03:22:09+00:00

Amazon FSx

2023-06-23T05:59:41+00:00

Bookmarks Common Use Cases Storage Migration Limits Security Pricing Amazon FSx Cheat Sheet Amazon FSx is a fully managed third-party file system solution. It uses SSD storage to provide fast performance with low latency. There are four available FSx solutions available in AWS: Amazon FSx for Windows File Server A fully managed native Microsoft Windows file system with full support for the SMB protocol, Windows NTFS, and Microsoft Active Directory (AD) integration. How It Works Common Use Cases  File systems that is accessible by multiple users, and can establish permissions at [...]

Amazon FSx2023-06-23T05:59:41+00:00

AWS Global Accelerator

2023-06-16T22:44:21+00:00

AWS Global Accelerator Cheat Sheet A service that uses the AWS Global Network to improve the availability and performance of your applications to your local and global users.  It provides static IP addresses that act as a fixed entry point to your application endpoints in a single or multiple AWS Regions, such as your Application Load Balancers, Network Load Balancers or Amazon EC2 instances. AWS Global Accelerator continually monitors the health of your application endpoints and will detect an unhealthy endpoint and redirect traffic to healthy endpoints in less than 1 minute. How It Works Concepts An accelerator is the [...]

AWS Global Accelerator2023-06-16T22:44:21+00:00

AWS Artifact

2024-01-18T07:32:20+00:00

AWS Artifact Cheat Sheet A self-service central repository of AWS’ security and compliance reports and select online agreements. An audit artifact is a piece of evidence that demonstrates that an organization is following a documented process or meeting a specific requirement (business compliant).  AWS Artifact Reports include the following: ISO, Service Organization Control (SOC) reports,  Payment Card Industry (PCI) reports,  and certifications that validate the implementation and operating effectiveness of AWS security controls. AWS Artifacts Agreements include  the Nondisclosure Agreement (NDA)  the Business Associate Addendum (BAA), which typically is required for companies that are subject to the HIPAA Act to [...]

AWS Artifact2024-01-18T07:32:20+00:00

Amazon Macie

2024-01-18T07:31:33+00:00

Bookmarks Concepts Pricing Amazon Macie Cheat Sheet A security service that uses machine learning to automatically discover, classify, and protect sensitive data in AWS. Macie recognizes sensitive data such as personally identifiable information (PII) or intellectual property. Amazon Macie allows you to achieve the following: Identify and protect various data types, including PII, PHI, regulatory documents, API keys, and secret keys Verify compliance with automated logs that allow for instant auditing Identify changes to policies and access control lists Receive notifications when data and account credentials leave protected zones Detect when large quantities of business-critical [...]

Amazon Macie2024-01-18T07:31:33+00:00

Top 5 AWS Study Tips for Busy Professionals

2023-12-15T03:05:54+00:00

Top 5 AWS Study Tips for Busy Professionals In this fast-paced world, there are a lot of things in our TO DO list that needs to be accomplished in such a short period of time. We wake up, prepare for work, rush to the office, attend our daily stand-up scrum meeting, do our Jira tickets for the current sprint, attend a yet-another-meeting at work, take care of the kids, pump iron, de-stress, socialize, hit the sack and repeat the process the next day. Where can we find the time to upgrade our skills or let alone, pass a tough AWS [...]

Top 5 AWS Study Tips for Busy Professionals2023-12-15T03:05:54+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

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

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

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!