<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>AWS Archives -</title>
	<atom:link href="https://irislogic.com/category/aws/feed/" rel="self" type="application/rss+xml" />
	<link>https://irislogic.com/category/aws/</link>
	<description></description>
	<lastBuildDate>Thu, 17 Jul 2025 07:09:03 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://irislogic.com/wp-content/uploads/2024/07/cropped-2-32x32.png</url>
	<title>AWS Archives -</title>
	<link>https://irislogic.com/category/aws/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Serverless computing and AWS Lambda! – Part 1</title>
		<link>https://irislogic.com/serverless-computing-and-aws-lambda-part-1/</link>
		
		<dc:creator><![CDATA[Irislogic]]></dc:creator>
		<pubDate>Sun, 10 Mar 2024 16:59:12 +0000</pubDate>
				<category><![CDATA[AWS]]></category>
		<category><![CDATA[Technology]]></category>
		<guid isPermaLink="false">https://irislogic.com/?p=1049</guid>

					<description><![CDATA[<p>Serverless computing, also known as function as a service (FaaS), is a&#160;cloud computing&#160;code execution model in which the cloud provider [&#8230;]</p>
<p>The post <a href="https://irislogic.com/serverless-computing-and-aws-lambda-part-1/">Serverless computing and AWS Lambda! – Part 1</a> appeared first on <a href="https://irislogic.com"></a>.</p>
]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-uagb-image aligncenter uagb-block-9d8998c8 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/Serverless-computing-and-AWS-Lambda-1024x683.jpg ,https://irislogic.com/wp-content/uploads/2024/03/Serverless-computing-and-AWS-Lambda-scaled.jpg 780w, https://irislogic.com/wp-content/uploads/2024/03/Serverless-computing-and-AWS-Lambda-scaled.jpg 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/Serverless-computing-and-AWS-Lambda-1024x683.jpg" alt="Serverless computing and AWS Lambda! – Part 1" class="uag-image-1050" width="1024" height="683" title="A man utilizes cloud computing technology on his laptop for data transmission, storage, backup, and retrieval" loading="lazy"/></figure></div>



<p>Serverless computing, also known as function as a service (FaaS), is a&nbsp;<strong>cloud computing</strong>&nbsp;code execution model in which the cloud provider fully manages starting and stopping of a function’s container platform as a service (PaaS) as necessary to serve requests, and requests are billed by an abstract measure of the resources required to satisfy the request, rather than per virtual machine, per hour. Despite the name, it does not actually involve running code without servers. The name “serverless computing” is used because the business or person that owns the system does not have to purchase, rent or provision servers or virtual machines for the back-end code to run on.</p>



<p>Serverless code can be used in conjunction with code written in traditional server style, such as microservices. For example, part of a web application could be written as microservices and another part could be written as serverless code. Alternatively, an application could be written that uses no provisioned servers at all, being completely serverless. Serverless code can either be triggered by specific events or be configured to run behind an API management platform in order to expose it as a REST API endpoint. With the onset of Node.JS, there has been a lot of heat in the JS-Realm, different teams, companies, individuals are constantly leveraging this technology and adding value to it, and this is happening right now, as you are reading this. The node.js eco-system is growing by 1000 modules per month and it is the winner by far if you go to the official website of the node.js modules (https://www.npmjs.com/), it reads</p>



<p><a href="https://irislogic.com/wp-content/uploads/2017/05/Serverless-Computing-1-IrisLogic.png"></a></p>



<p>That is the number of the npm modules in the registry present currently, as I write this paper.</p>



<p>One of those packages is called as ServerLess, exactly what this discussion is about.</p>



<p><strong>What is ServerLess?</strong></p>



<p>Just by merely reading it out, in its literal terms it can be said it is to do something without using Servers or doing something minus the servers. So let’s first understand what are servers and why we need them: Simply put, servers are like any other Personal Computer but with more amount of RAM and more Hard disk space or you can also look at them as a piece of hardware which provide us with:</p>



<ol class="wp-block-list">
<li>An operating system2. A</li>



<li>A file-handling mechanism</li>



<li>A system with more amount of computing power by using a high-end processor</li>



<li>A system with more hard disk space</li>



<li>A platform to install more software on it</li>



<li>A platform to host a web application on – This is exactly what we need when we want to make an application to be used by the entire world</li>
</ol>



<p><strong>Introduction to ServerLess</strong></p>



<p>Ok, so having said that it is clear that they are essentially needed when hosting an application. In a typical application at a high-level there are two ends:</p>



<ol class="wp-block-list">
<li>The front-end (the UI that shows up on the browser)</li>



<li>The back-end (the server-side logic to manipulate the data coming from the front-end and to send to a persistent store.)</li>
</ol>



<p>So now, if we talk about ServerLess, it implies that you have a front-end but you do not have a back-end or a dedicated server to host it on, then how would you host or what would you host your application on AWS cloud.</p>



<p>In the Node.js realm, it is possible to develop an application that would not need a dedicated server and this has been made possible by the arrival of ServerLess, none the less the prerequisite is you would need a Cloud Service which is capable of understanding / supporting this technology.</p>



<p>For this discussion, we would be using AWS Cloud Service, not only because it was one of the first Cloud platforms the creators of ServerLess wanted to support but because AWS also has a feature called as Lambda functions where the functions can respond to a particular event. ServerLess demands a change in developer thought process and focuses on one of the strongest and oldest principle called as&nbsp;<strong><u>Single Responsibility Principle-SRP.</u></strong></p>



<p>ServerLess asks the developer to divide all the functionalities/features of the application into small self-contained functions. Each of these functions would do one thing and one thing only. The server-side functionalities would be divided into several self-contained functions and each function acting as one ServerLess module.</p>



<p><strong>How does it all work?</strong></p>



<p>Let’s just walk through a project on a very high-level.</p>



<p>Before we start a serverless-project/module we need to create a serverless project template, to do this we simply execute a serverless create project binary inside the project directory (more details on this in the next article) and this creates a blank skeleton with some JavaScript, JSON files and a serverless.yaml file. This YAML file works its magic during deployment.</p>



<p><a href="https://irislogic.com/wp-content/uploads/2017/05/aws-cloudformation-IrisLogic.jpg"></a></p>



<p>Once the developer is done with development and testing of the said function, he would use the deploy binary from ServerLess package to deploy to AWS Cloud, now this is exactly where the serverless magic happens, the ServerLess binaries executes the serverless.yaml file and starts making a logical stack of resources needed (by the function being deployed), this stack is what we call a AWS-CloudFormation. If there are no errors in this step, then stack is made and kept ready inside AWS CloudFormation.</p>



<p>During deployment the code-files are zipped up and stored in a bucket in S3, and the API Gateways, Lambda functions, AWS CloudWatch LogGroups etc. are created. All these resources even though they are created in the cloud, the owner of the cloud account is billed only when the resources are actually used per call, and every call to the deployed serverless module uses a fraction of the said resources, thereby bringing down the cost in a big way.</p>



<p>The first deploy usually takes 3-4 minutes depending upon resources mentioned, once done the URLs to trigger the functions are mentioned and exposed at the end of deployment. The URL can then be consumed in an Ajax call from the front-end and that’s it, any call made to the URLs triggers the Cloud stack into action, and the function is executed per call, thereby achieving a handshake between the front-end and a server-side functionality deployed in the cloud.</p>



<p>Also, a quick thing to be noted here is that all the heavy-lifting of:</p>



<ol class="wp-block-list">
<li>Storing the code-files in S3</li>



<li>Creating API Gateways</li>



<li>Creating AWS CloudFormation Stack</li>



<li>Creating LogGroups in AWS CloudWatch</li>



<li>Creates a AWS-Lambda function where the created URL is mapped to a function whose code is stored in AWS-S3</li>



<li>Making provisions to use any other AWS resource</li>
</ol>



<p>Is all done by the deploy binary in the serverless package, this step can even be mentioned in a CI/CD script and thereby taking it to another level of automated serverless module deployment.</p>



<p><strong>Coming soon….</strong></p>



<p>In the next article, we’ll see how to create a small application using AngularJs, a database service running at some host, a front-end stored and hosted from a static file repository everyone coming together to make one application but without any dedicated server in the picture.</p>
<p>The post <a href="https://irislogic.com/serverless-computing-and-aws-lambda-part-1/">Serverless computing and AWS Lambda! – Part 1</a> appeared first on <a href="https://irislogic.com"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>AWS – Roles of most popular cloud services</title>
		<link>https://irislogic.com/aws-roles-of-most-popular-cloud-services/</link>
		
		<dc:creator><![CDATA[Irislogic]]></dc:creator>
		<pubDate>Sun, 10 Mar 2024 10:46:23 +0000</pubDate>
				<category><![CDATA[AWS]]></category>
		<guid isPermaLink="false">https://irislogic.com/?p=907</guid>

					<description><![CDATA[<p>EC2 – Amazon Virtual Servers – EC2 instances are similar to the virtual private servers S3 – Unlimited FTP Server – Store [&#8230;]</p>
<p>The post <a href="https://irislogic.com/aws-roles-of-most-popular-cloud-services/">AWS – Roles of most popular cloud services</a> appeared first on <a href="https://irislogic.com"></a>.</p>
]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-uagb-image aligncenter uagb-block-28e88078 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/AWS-services-page-001-1024x576.jpg ,https://irislogic.com/wp-content/uploads/2024/03/AWS-services-page-001-scaled.jpg 780w, https://irislogic.com/wp-content/uploads/2024/03/AWS-services-page-001-scaled.jpg 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/AWS-services-page-001-1024x576.jpg" alt="aws" class="uag-image-365" width="1024" height="576" title="AWS services-page-001" loading="lazy"/></figure></div>



<p><strong>EC2 – </strong>Amazon Virtual Servers – EC2 instances are similar to the virtual private servers</p>



<div class="wp-block-uagb-image aligncenter uagb-block-38d7b45e wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/2-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/2-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/2-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/2-3-1024x576.png" alt="ec2" class="uag-image-908" width="635" height="357" title="2" loading="lazy"/></figure></div>



<p><strong>S3 </strong>– Unlimited FTP Server – Store images and other assets for websites. Keep backups and share files between services. Host static websites. Also, many of the other AWS services write and read from S3.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-6fa77762 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/3-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/3-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/3-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/3-3-1024x576.png" alt="s3" class="uag-image-909" width="332" height="187" title="3" loading="lazy"/></figure></div>



<p><strong>VPC</strong> – Virtual Co-located Lab – Bunch of machines linked together as one VLAN.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-0d2996de wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/4-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/4-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/4-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/4-3-1024x576.png" alt="vpc" class="uag-image-910" width="377" height="212" title="4" loading="lazy"/></figure></div>



<p><strong>Lambda</strong> – App Script Container – Run little self contained snippets of JS, Java or Python to do discrete tasks. Sort of a combination of a queue and execution in one. Used for storing and then executing changes to your AWS setup or responding to events in S3 or DynamoDB.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-51a672c6 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/5-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/5-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/5-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/5-3-1024x576.png" alt="lamda" class="uag-image-911" width="231" height="130" title="5" loading="lazy"/></figure></div>



<p><strong>API Gateway</strong> – API Proxy – Proxy your apps API through this so you can throttle bad client traffic, test new versions, and present methods more cleanly.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-20892ad1 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/6-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/6-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/6-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/6-3-1024x576.png" alt="api gateway" class="uag-image-912" width="423" height="238" title="6" loading="lazy"/></figure></div>



<p><strong>RDS</strong> – Amazon SQL – Be your app’s Mysql, Postgres, and Oracle database.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-52c49645 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/7-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/7-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/7-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/7-3-1024x576.png" alt="rds" class="uag-image-913" width="347" height="195" title="7" loading="lazy"/></figure></div>



<p><strong>IAM – </strong>Users, Keys and Certs – Set up additional users, set up new AWS Keys and policies</p>



<div class="wp-block-uagb-image aligncenter uagb-block-6f7f67c9 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/8-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/8-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/8-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/8-3-1024x576.png" alt="iam" class="uag-image-914" width="373" height="210" title="8" loading="lazy"/></figure></div>



<p><strong>Route53</strong> – Amazon DNS + Domains – Buy a new domain and set up the DNS records for that domain.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-8cea9873 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/9-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/9-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/9-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/9-3-1024x576.png" alt="route 53" class="uag-image-915" width="258" height="145" title="9" loading="lazy"/></figure></div>



<p><strong>Cloudfront</strong> – Amazon CDN – Make your websites load faster by spreading out static file delivery to be closer to where your users are.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-2ceb7b87 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/10-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/10-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/10-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/10-3-1024x576.png" alt="front" class="uag-image-916" width="356" height="200" title="10" loading="lazy"/></figure></div>



<p><strong>CloudSearch</strong> – Amazon Full text Search – Pull in data on S3 or in RDS and then search it for every instance</p>



<div class="wp-block-uagb-image aligncenter uagb-block-13dfdf6e wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/11-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/11-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/11-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/11-3-1024x576.png" alt="cloud search" class="uag-image-917" width="384" height="216" title="11" loading="lazy"/></figure></div>



<p><strong>DynamoDB</strong> – Amazon NoSQL – Be your app’s massively scalable key value store</p>



<div class="wp-block-uagb-image aligncenter uagb-block-5f003ae4 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/12-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/12-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/12-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/12-3-1024x576.png" alt="dynamodb" class="uag-image-918" width="327" height="184" title="12" loading="lazy"/></figure></div>



<p><strong>Elasticache</strong> – Amazon Memcached – Be your app’s Memcached or Redis.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-e6b4ec54 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/13-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/13-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/13-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/13-3-1024x576.png" alt="elastic" class="uag-image-919" width="350" height="197" title="13" loading="lazy"/></figure></div>



<p><strong>Elastic Transcoder</strong> – Amazon Cut Pro – Video manipulation (change formats, compress, etc.)</p>



<div class="wp-block-uagb-image aligncenter uagb-block-6fa6e346 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/14-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/14-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/14-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/14-3-1024x576.png" alt="elastic" class="uag-image-920" width="361" height="203" title="14" loading="lazy"/></figure></div>



<p><strong>SQS</strong> – Amazon Queue – Store data for future processing in a queue. The language for this is storing “messages” but it doesn’t have anything to do with email or SMS. SQS doesn’t have any logic, it’s just a place to put things and take things out.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-f50531f8 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/15-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/15-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/15-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/15-3-1024x576.png" alt="sqs" class="uag-image-921" width="396" height="223" title="15" loading="lazy"/></figure></div>



<p><strong>WAF</strong> – AWS Firewall – Block bad requests to Cloudfront protected sites.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-9eb02c10 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/16-2-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/16-2.png 780w, https://irislogic.com/wp-content/uploads/2024/03/16-2.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/16-2-1024x576.png" alt="waf" class="uag-image-922" width="386" height="217" title="16" loading="lazy"/></figure></div>



<p><strong>Cognito</strong> – Amazon OAuth – Give end users – (non AWS) – the ability to log in with Google, Facebook, etc.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-1a39f673 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/17-2-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/17-2.png 780w, https://irislogic.com/wp-content/uploads/2024/03/17-2.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/17-2-1024x576.png" alt="cognito" class="uag-image-923" width="364" height="205" title="17" loading="lazy"/></figure></div>



<p><strong>SNS</strong> – Amazon Messenger – Send mobile notifications, emails and/or SMS messages</p>



<div class="wp-block-uagb-image aligncenter uagb-block-2a1f5a07 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/18-2-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/18-2.png 780w, https://irislogic.com/wp-content/uploads/2024/03/18-2.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/18-2-1024x576.png" alt="sns" class="uag-image-924" width="375" height="211" title="18" loading="lazy"/></figure></div>



<p><strong>CodeCommit</strong> – Amazon GitHub – Version control your code – cloud Git.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-bd87d2f8 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/19-2-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/19-2.png 780w, https://irislogic.com/wp-content/uploads/2024/03/19-2.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/19-2-1024x576.png" alt="codecommit" class="uag-image-925" width="332" height="187" title="19" loading="lazy"/></figure></div>



<p><strong>Code Deploy</strong> – Get your code from your CodeCommit repo (or Github) onto a bunch of EC2 instances</p>



<div class="wp-block-uagb-image aligncenter uagb-block-24226bd6 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/20-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/20-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/20-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/20-3-1024x576.png" alt="code deploy" class="uag-image-926" width="329" height="185" title="20" loading="lazy"/></figure></div>



<p><strong>CodePipeline</strong> – Amazon Continuous Integration – Run automated tests on your code and then do stuff with it depending on if it passes those tests.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-b926e3b2 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/21-2-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/21-2.png 780w, https://irislogic.com/wp-content/uploads/2024/03/21-2.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/21-2-1024x576.png" alt="code pipeline" class="uag-image-927" width="308" height="173" title="21" loading="lazy"/></figure></div>



<p><strong>EC2 Container Service</strong> – Amazon Docker as a Service – Put a Docker file into an EC2 instance so you can run a website</p>



<div class="wp-block-uagb-image aligncenter uagb-block-612e96f6 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/22-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/22-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/22-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/22-3-1024x576.png" alt="ec2" class="uag-image-928" width="393" height="221" title="22" loading="lazy"/></figure></div>



<p><strong>Elastic Beanstalk </strong>– Amazon Platform as a Service – Move your app hosted on other clouds to AWS</p>



<div class="wp-block-uagb-image aligncenter uagb-block-9c305c7e wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/23-3-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/23-3.png 780w, https://irislogic.com/wp-content/uploads/2024/03/23-3.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/23-3-1024x576.png" alt="elastic" class="uag-image-929" width="325" height="183" title="23" loading="lazy"/></figure></div>



<p><strong>Data Pipeline</strong> – Amazon ETL – Extract, Transform and Load data from elsewhere in AWS. Schedule when it happens and get alerts when they fail.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-b30ca15e wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/24-2-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/24-2.png 780w, https://irislogic.com/wp-content/uploads/2024/03/24-2.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/24-2-1024x576.png" alt="data pipeline" class="uag-image-930" width="357" height="201" title="24" loading="lazy"/></figure></div>



<p><strong>Elastic Map Reduce (EMR)</strong> – Amazon Hadoop – Iterate over massive text files of raw data that you’re keeping in S3</p>



<div class="wp-block-uagb-image aligncenter uagb-block-abd6876d wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/26-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/26.png 780w, https://irislogic.com/wp-content/uploads/2024/03/26.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/26-1024x576.png" alt="emr" class="uag-image-932" width="272" height="153" title="26" loading="lazy"/></figure></div>



<p><strong>Glacier</strong> – Large Amazon S3 – Make backups of your backups that you keep on S3.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-c81c144b wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/27-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/27.png 780w, https://irislogic.com/wp-content/uploads/2024/03/27.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/27-1024x576.png" alt="glacier" class="uag-image-933" width="267" height="150" title="27" loading="lazy"/></figure></div>



<p><strong>Kinesis</strong> – Amazon Kafka – Ingest lots of data very quickly that you then later use other AWS services to analyze.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-39063a6c wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/28-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/28.png 780w, https://irislogic.com/wp-content/uploads/2024/03/28.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/28-1024x576.png" alt="kneis" class="uag-image-934" width="373" height="210" title="28" loading="lazy"/></figure></div>



<p><strong>RedShift</strong> – Amazon Data Warehouse – Store a whole bunch of analytics data, do some processing, and dump it out.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-17dfac12 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/29-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/29.png 780w, https://irislogic.com/wp-content/uploads/2024/03/29.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/29-1024x576.png" alt="red shift" class="uag-image-935" width="272" height="153" title="29" loading="lazy"/></figure></div>



<p><strong>CloudFormation</strong> – Amazon Services Setup – Set up a bunch of connected AWS services in one go</p>



<div class="wp-block-uagb-image aligncenter uagb-block-94fe880d wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/30-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/30.png 780w, https://irislogic.com/wp-content/uploads/2024/03/30.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/30-1024x576.png" alt="cloud formation" class="uag-image-936" width="265" height="149" title="30" loading="lazy"/></figure></div>



<p><strong>CloudTrail</strong> – Amazon Logging – Log who is doing what in your AWS stack (API calls).</p>



<div class="wp-block-uagb-image aligncenter uagb-block-0e3e8a71 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/31-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/31.png 780w, https://irislogic.com/wp-content/uploads/2024/03/31.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/31-1024x576.png" alt="cloud" class="uag-image-937" width="373" height="210" title="31" loading="lazy"/></figure></div>



<p><strong>CloudWatch</strong> – Amazon Status Pager – Get alerts about AWS services messing up or disconnecting</p>



<div class="wp-block-uagb-image aligncenter uagb-block-8510528f wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/32-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/32.png 780w, https://irislogic.com/wp-content/uploads/2024/03/32.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/32-1024x576.png" alt="cloud watch" class="uag-image-938" width="391" height="220" title="32" loading="lazy"/></figure></div>



<p><strong>Config</strong> – Amazon Configuration Management – Keep from going insane if you have a large AWS setup and changes are happening that you want to track.</p>



<div class="wp-block-uagb-image aligncenter uagb-block-b36a14ab wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center"><figure class="wp-block-uagb-image__figure"><img decoding="async" srcset="https://irislogic.com/wp-content/uploads/2024/03/33-1024x576.png ,https://irislogic.com/wp-content/uploads/2024/03/33.png 780w, https://irislogic.com/wp-content/uploads/2024/03/33.png 360w" sizes="auto, (max-width: 480px) 150px" src="https://irislogic.com/wp-content/uploads/2024/03/33-1024x576.png" alt="config" class="uag-image-939" width="320" height="180" title="33" loading="lazy"/></figure></div>
<p>The post <a href="https://irislogic.com/aws-roles-of-most-popular-cloud-services/">AWS – Roles of most popular cloud services</a> appeared first on <a href="https://irislogic.com"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Amazon Web Services (AWS) @IrisLogic</title>
		<link>https://irislogic.com/amazon-web-services-aws-irislogic/</link>
		
		<dc:creator><![CDATA[Irislogic]]></dc:creator>
		<pubDate>Mon, 04 Mar 2024 13:04:47 +0000</pubDate>
				<category><![CDATA[AWS]]></category>
		<guid isPermaLink="false">https://irislogic.com/?p=364</guid>

					<description><![CDATA[<p>Amazon Web Services is an Amazon company that offers on-demand cloud storage tools and APIs on a metered pay-as-you-go basis [&#8230;]</p>
<p>The post <a href="https://irislogic.com/amazon-web-services-aws-irislogic/">Amazon Web Services (AWS) @IrisLogic</a> appeared first on <a href="https://irislogic.com"></a>.</p>
]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image aligncenter size-large is-resized"><img fetchpriority="high" decoding="async" width="1024" height="576" src="https://irislogic.com/wp-content/uploads/2024/03/AWS-page-001-1024x576.jpg" alt="aws" class="wp-image-367" style="width:672px;height:auto" srcset="https://irislogic.com/wp-content/uploads/2024/03/AWS-page-001-1024x576.jpg 1024w, https://irislogic.com/wp-content/uploads/2024/03/AWS-page-001-300x169.jpg 300w, https://irislogic.com/wp-content/uploads/2024/03/AWS-page-001-768x432.jpg 768w, https://irislogic.com/wp-content/uploads/2024/03/AWS-page-001-1536x864.jpg 1536w, https://irislogic.com/wp-content/uploads/2024/03/AWS-page-001-2048x1152.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Amazon Web Services is an Amazon company that offers on-demand cloud storage tools and APIs on a metered pay-as-you-go basis for individuals, companies, and governments. IrisLogic provide end-to-end services for businesses that use Amazon Web Services to create essential cloud solutions. Our deep expertise and automated designs and processes mean that we provide you with the fastest time to value AWS, whether you first migrate to AWS, provide 24 x 7 operational management of your AWS environments or leverage your business value AWS solutions through automation and cloud solutions. We will manage your cloud infrastructure with AWS while you’re focused on increasing your business. Get complete peace of mind with our controlled cloud hosting services for AWS.</p>



<p>Our AWS area of expertise include following key areas:</p>



<p><strong><u>S3 And EC2</u></strong></p>



<p>Amazon Cloud Search lets you manage a mobile application or website search solution. Amazon S3 stores a vast volume of data and the AWS EC2 lets developers easily install and manage cloud-based applications.</p>



<p><strong><u>Serverless API And CloudWatch</u></strong></p>



<p>We integrate Serverless API with ‘API Gateway’ Amazon Web Services allows clients to focus on their core activities. Cloud watch enables real-time surveillance of AWS resources</p>



<p><strong><u>Lambda And CloudTail</u></strong></p>



<p>AWS Lambda lets you execute code in response to unique events and AWS CloudTrail lets you record API calls and send log files for storage to Amazon S3 buckets.</p>



<p><strong><u>Amazon Glacier, S3 And Route-53</u></strong></p>



<p>We handle the data as an archival in a cost-effective way for the long term. IrisLogic have experience handling your DNS information in a simple way, hosting areas, DNS queries.</p>



<p><strong><u>Amazon VPC And Elasticache</u></strong></p>



<p>Cost-effectively, we handle your private cloud with ease. We, at IrisLogic, manage device caching via Redis and Memcached to deliver high performance.</p>



<p><strong><u>Amazon RDS And Cloudfront</u></strong></p>



<p>We specialize in setting and scaling up your database to make it simple and high performing. Our experts have the experience to speed up your static and dynamic web content delivery to your users in less time.</p>



<p><strong>AWS Cloud Implementation</strong></p>



<p>IrisLogic provides Amazon Web Services and follows the cloud computing approach in three steps.</p>



<ol class="wp-block-list">
<li>We develop a strategy for optimizing cloud performance and rethink ways to change your cloud business operations.</li>



<li>We transform applications by rationalizing and migrating workloads, or by creating new cloud applications, as per the predefined strategy.</li>



<li>Our cloud specialists optimize the allocation of the workload to public and private utilities for secured operations as per the business requirement.</li>
</ol>



<p><strong>Migration And Strategy Of AWS</strong></p>



<p>Use our proven cloud migration services to migrate your simple to complex applications. Our realistic approach of AWS helps the customer turn their business into an agile business. We research in-depth about your current program and can help you move it to services AWS Cloud. After the process is complete, we get keys for an automated cloud environment that’s fit for your app. These are the steps covered under this process are.</p>



<ul class="wp-block-list">
<li><em>Infrastructure migration:&nbsp;</em>The proven method that our experts employ helps deploy your IT infrastructure into a successful relocation. This ensures a smooth transition with fewer downtimes.</li>



<li><em>Data migration:&nbsp;</em>Assess the current infrastructure in your company &amp; gather critical data. Carrying out a smooth analysis will help deliver a smooth process of cloud migration ahead.</li>



<li><em>Application migration:&nbsp;</em>We offer successful application migration which bridges the technology gaps. IrisLogic’s powerful cloud computing services seamlessly push your device or product.</li>



<li><em>Cloud-native capabilities:&nbsp;</em>We define how we deploy your applications live in the cloud with cloud-native services. IrisLogic effectively employs agile methods, DevOps, and other cloud platforms.</li>
</ul>



<p><strong>AWS For Mobile And Web</strong></p>



<p>We use AWS services to build potent integrated mobile and web backends so that you can build and scale, using cloud power. We help app owners get the best performance out of their cloud environment, from enhancing content delivery to reducing dependencies. Work with data in real-time or analyze cloud big data with ease.</p>



<p><strong>IrisLogic AWS Services</strong></p>



<ul class="wp-block-list">
<li><em>Secure</em>&nbsp;: We offer the most comprehensive security capabilities to satisfy the most demanding requirements.</li>



<li><em>Compliant</em>&nbsp;: We know that customers care deeply about data security and privacy. Our services offer all the functionalities, enablers, and legal agreements that are part of AWS customer compliance.</li>



<li><em>Hybrid</em>&nbsp;: The professional experts at IrisLogic can assist you in building hybrid architectures that extend your on-site infrastructure to the cloud though amazon web services.</li>



<li><em>Scalable</em>&nbsp;: At IrisLogic, we have vowed to make things easier for our clients. With just a few minutes’ notice, access as much or as little as you need, and scale up and down as needed.</li>
</ul>
<p>The post <a href="https://irislogic.com/amazon-web-services-aws-irislogic/">Amazon Web Services (AWS) @IrisLogic</a> appeared first on <a href="https://irislogic.com"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
