Amazon CloudFront is a content delivery web service. It integrates with other Amazon Web Services products to give developers and businesses an easy way to distribute content to end users with low latency, high data transfer speeds, and no minimum usage commitments.
Tag: amazon
Automating Infrastructure with CloudFormation: Creating a Basic Template for S3 bucket and EC2
AWS CloudFormation takes care of provisioning and configuring those AWS resources for you. It automates the Infrastructure setup on AWS for you. You just need to create a CloudFormation template elisting the resources and their configuration. The template can be written in JSON or YAML Cloud Formation Templates are reusable which a big advantage. Cloud Formation … Continue reading Automating Infrastructure with CloudFormation: Creating a Basic Template for S3 bucket and EC2
How to deploy your node.js web application with AWS Beanstalk?
This post will show you how we can quickly create a node.js web aplication based on express framework and how to deploy that application on AWS using AWS BeanStalk service. Now first you need to know what is AWS BeanStalk? Some information about AWS BeanStalk: AWS BeanStalk is the fastest and simplest way to deploy … Continue reading How to deploy your node.js web application with AWS Beanstalk?
AWS: Creating your first S3 Bucket!
AWS S3 stands for Simple Storage Service. S3 is object storage which allows you to upload files. The max files size that can be stored is 5TB. The files can be stored in a structure called buckets. A bucket is your root resource in which you add, delete or modify objects. Your bucket name should … Continue reading AWS: Creating your first S3 Bucket!
Creating and deploying a Serverless REST API with AWS Lambda, DynamoDB and API Gateway and node.js
AWS Lambda is a compute service that lets you run code without provisioning or managing servers. Amazon DynamoDB is a fast and flexible nonrelational database service for all applications that need consistent, single-digit millisecond latency at any scale. Amazon API Gateway is a fully managed service that makes it easy for developers to create, publish, maintain, monitor, … Continue reading Creating and deploying a Serverless REST API with AWS Lambda, DynamoDB and API Gateway and node.js
How to add data to DynamoDB table using AWS Lambda(serverless) function?
AWS Lambda is a compute service that lets you run code without provisioning or managing servers. Amazon DynamoDB is a fast and flexible nonrelational database service for all applications that need consistent, single-digit millisecond latency at any scale. Let us see how we can execute our code in AWS Lambda so that it saves the data in … Continue reading How to add data to DynamoDB table using AWS Lambda(serverless) function?
Setting up a free tier AWS Account
Let us get started with AWS by creating a AWS account to login into AWS Management Console. Step 1) Go to aws.amazon.com and click on "Sign in to the Console" Then click on "Create a new AWS account" Or you directly go to https://portal.aws.amazon.com/billing/signup#/start Add your details below: Now select the personal or professional(you can choose any … Continue reading Setting up a free tier AWS Account
Serverless Battle: Azure Functions compared to AWS lambda
Since the last 4 years or so the cloud computing has been a game changer in a number ways and the emergence of serverless computing/architectures has just solved many of the core computing problems. Serverless is about abstracting users away from servers, infrastructure, and having to deal with low-level configuration or the core operating system. … Continue reading Serverless Battle: Azure Functions compared to AWS lambda
Amazon Lex compared to Microsoft Bot Framework
A chat bot is a service, powered by rules and sometimes artificial intelligence which converse via natural language text interfaces. Amazon offers its own service on AWS to build Conversation Bots known as Amazon Lex. Whereas, Microsoft offers a set of Cognitive services and Bot Framework to build chat bot on Azure and also locally. … Continue reading Amazon Lex compared to Microsoft Bot Framework
Web Development Trends in 2018 and for future!
Since the launch of the first website made by Tim Berners-Lee in 1991, the website development practice have come a long way and every year new web design and development trends are coming. Developers are becoming more agile in learning about these new trends. In 2018, we'll look at the new trends which are hot … Continue reading Web Development Trends in 2018 and for future!
AWS: Route53
Route53 is Amazon service for DNS management for both inside and outside AWS. It allows you to easily configure domain names to resolve to internal Service domain names. You can register domain names you already own or register through AWS. http://www.example.com → route53 ← EC2 app Route53 is core to letting users interact in AWS. … Continue reading AWS: Route53