随笔分类 -  AWS

摘要:EC2 Auto Scaling is a service that ensures you have the desired number of EC2 instances always up and running to handle the expected load for your app 阅读全文
posted @ 2021-03-16 15:18 Zhentiw 阅读(116) 评论(0) 推荐(0)
摘要:An IAM policy is a JSON file that defines the level of permissions (authorization) a user (or a service) can have while accessing AWS services in your 阅读全文
posted @ 2021-03-16 14:54 Zhentiw 阅读(171) 评论(0) 推荐(0)
摘要:S3 & CloudFront In this hands-on exercise, you will access private S3 bucket content via a Cloud Front distribution. You will also learn that CloudFro 阅读全文
posted @ 2021-03-16 00:51 Zhentiw 阅读(189) 评论(0) 推荐(0)
摘要:In this hands-on exercise, you will create a MySQL database instance using RDS. Prerequisites: AWS Account By the end of this lab, you will be able to 阅读全文
posted @ 2021-03-15 15:07 Zhentiw 阅读(183) 评论(0) 推荐(0)
摘要:Elastic Beanstalk In this hands-on exercise, you will use Elastic Beanstalk to deploy a web application to the cloud. Pre-requisites: AWS Account By t 阅读全文
posted @ 2021-03-14 22:23 Zhentiw 阅读(189) 评论(0) 推荐(0)
摘要:Compute Power in the Cloud In this hands-on exercise, you will write your first Lambda function using Node.js. Prerequisites: AWS account An Amazon S3 阅读全文
posted @ 2021-03-14 20:31 Zhentiw 阅读(132) 评论(0) 推荐(0)
摘要:Let's learn how to create your custom VPC. From the VPC Dashboard, click the Launch VPC Wizard. It is a two-step process, as mentioned below. Snapshot 阅读全文
posted @ 2021-03-14 16:53 Zhentiw 阅读(136) 评论(0) 推荐(0)
摘要:Let's have an overview of the information available on the EC2 dashboard. Snapshot: EC2 Dashboard The details of the items highlighted in red above ar 阅读全文
posted @ 2021-03-14 16:18 Zhentiw 阅读(155) 评论(0) 推荐(0)
摘要:In this lesson we learn how to deploy your React application to AWS using the Amplify CLI & Amazon S3. Rnn: amplify add hosting Next, we're prompted f 阅读全文
posted @ 2021-03-11 16:19 Zhentiw 阅读(93) 评论(0) 推荐(0)
摘要:Amazon S3 offers a way to store & retrieve items in the cloud. In this lesson we’ll see how we can easily store images in an S3 bucket using the AWS A 阅读全文
posted @ 2021-03-11 16:17 Zhentiw 阅读(169) 评论(0) 推荐(0)
摘要:In this lesson we’ll create a new GraphQL API using the Amplify CLI and use the Amplify GraphQL API to query data from the new API & render it in our 阅读全文
posted @ 2021-03-11 04:10 Zhentiw 阅读(86) 评论(0) 推荐(0)
摘要:If you want to share some file in S3 with some one for a period of time you can create presign url. aws s3 presign s3://<bucket_name>/<filen_ame> --ex 阅读全文
posted @ 2021-03-05 20:09 Zhentiw 阅读(211) 评论(0) 推荐(0)
摘要:Kinesis Stream Add Kinesis serverless.yml, add following configuration resources: Resources: orderEventsStream: Type: AWS::Kinesis::Stream Properties: 阅读全文
posted @ 2021-03-03 18:22 Zhentiw 阅读(110) 评论(0) 推荐(0)
摘要:Kinesis trigger Lambda flow When kinesis stream receive order_placed event then trigger Lambda which will call ses (Simple Email Service) to send emai 阅读全文
posted @ 2021-03-03 18:21 Zhentiw 阅读(98) 评论(0) 推荐(0)
摘要:Serverless AWS lambda Config serverless with aws serverless config credentials --provider aws --key <ACCESS_KEY_AWS> --secret <SECRET_KEY_AWS> Init pr 阅读全文
posted @ 2021-02-24 21:37 Zhentiw 阅读(120) 评论(0) 推荐(0)
摘要:Choose a "Hosted zones" (the application we created) A Version with 90% weight B Version with 10% weight Blue/Green deployment whitepaper 阅读全文
posted @ 2021-02-22 19:29 Zhentiw 阅读(135) 评论(0) 推荐(0)
摘要:During the deployment, if you have any external files you need to add into build process. You can save those files into S3. Then pulling those files i 阅读全文
posted @ 2021-02-22 16:22 Zhentiw 阅读(69) 评论(0) 推荐(0)
摘要:1. Download the git repo into local. 2. Copy the SSH / HTTPS URL from CodeCommit Repo Then run: git remote set-url origin ssh://code-commit.address.xx 阅读全文
posted @ 2021-02-17 21:24 Zhentiw 阅读(56) 评论(0) 推荐(0)
摘要:Install: npm i -g aws-cdk Init a project: cdk init sample-app --language=typescript To verify it works: npm run build Should have no error. Developeme 阅读全文
posted @ 2020-08-04 23:04 Zhentiw 阅读(648) 评论(0) 推荐(0)
摘要:Building larger serverless applications can be tricky - creating many lambda functions as well as other resources such as DynamoDB tables, S3 buckets, 阅读全文
posted @ 2020-07-01 20:09 Zhentiw 阅读(363) 评论(0) 推荐(0)