随笔分类 -  AWS - DA

摘要:The logic is following: When APIGateway get a request, will check it against a JSON schema, if it failed, return 400, otherwise forward to Lambda. Rea 阅读全文
posted @ 2021-05-17 15:14 Zhentiw 阅读(164) 评论(0) 推荐(0)
摘要:Pull-Based SQS is pull-based, not pushed-based 256KB Messages are 256 KB in size. Text Data Including XML, JSON, and unformatted text. Guarantee Messa 阅读全文
posted @ 2021-05-05 22:09 Zhentiw 阅读(193) 评论(0) 推荐(0)
摘要:Overview Kinesis Streams Streaming data and video in real-time Kinesis Data Firehose Data analytics with BI tools Kinesis Data Analytics Real-time dat 阅读全文
posted @ 2021-05-05 20:17 Zhentiw 阅读(153) 评论(0) 推荐(0)
摘要:SNS SES 阅读全文
posted @ 2021-05-05 15:44 Zhentiw 阅读(84) 评论(0) 推荐(0)
摘要:All at once Deploys to all instances simultaneously. You will experience a total outage. Not ideal for mission-critical production system. Rolling bac 阅读全文
posted @ 2021-05-05 02:46 Zhentiw 阅读(65) 评论(0) 推荐(0)
摘要:CloudWatch Bascily you can use CloudWatch to monitoring everything in AWS. CloudWatch Logs allow you to monitor operating system and application logs. 阅读全文
posted @ 2021-05-03 14:57 Zhentiw 阅读(51) 评论(0) 推荐(0)
摘要:1. Create a Role for CloudWatchAgent Create Role for `EC2` Service, attach prolicy 2. Create an EC2 instance Select the IAM role with the Role you jus 阅读全文
posted @ 2021-05-03 14:46 Zhentiw 阅读(113) 评论(0) 推荐(0)
摘要:If you send a GET request using this URL: https://{{apiId}}.execute-api.us-east-1.amazonaws.com/dev/groups?limit=2 you should get a reply like this: { 阅读全文
posted @ 2021-05-02 16:57 Zhentiw 阅读(89) 评论(0) 推荐(0)
摘要:Web Identity Federation Simplifies authentication and authorization for web applications. An Authentication token JWT is exchanged for temporary AWS c 阅读全文
posted @ 2021-04-29 00:56 Zhentiw 阅读(98) 评论(0) 推荐(0)
摘要:Create an IAM User Give Admin access Create DynamoDB Table 1) Create facts table: **** (use ^ - Shift + 6 if you are a windows user, not \) **** aws d 阅读全文
posted @ 2021-04-23 19:04 Zhentiw 阅读(193) 评论(0) 推荐(0)
摘要:What is KMS Managed service that makes it easy for you to create and control the encryption keys used to encrypt your data Seamlessly integrated with 阅读全文
posted @ 2021-04-22 21:54 Zhentiw 阅读(160) 评论(0) 推荐(0)
摘要:1. Create a Lambda function: called `get-groups` const data = [ {name: 'angular', id: 1}, {name: 'react', id: 2}, {name: 'vue', id: 3} ]; exports.hand 阅读全文
posted @ 2021-04-19 21:13 Zhentiw 阅读(78) 评论(0) 推荐(0)
摘要:Solution Outline To run our function we use a service called CloudWatch, which periodically generates events. Those events are sent to the Lambda func 阅读全文
posted @ 2021-04-18 16:43 Zhentiw 阅读(94) 评论(0) 推荐(0)
摘要:API Gateway Provides an endpoint to your applications running in AWS It is Serverless: Low cost and scales automatically You can throttle API Gateway 阅读全文
posted @ 2021-04-16 03:21 Zhentiw 阅读(90) 评论(0) 推荐(0)
摘要:Continuous Integration Integrating or mergin the code changes frequently - at least once per day. (CodeCommit / GitHub) Continuous Delivery Automating 阅读全文
posted @ 2021-04-10 22:02 Zhentiw 阅读(134) 评论(0) 推荐(0)
摘要:Task Breakdown Install the AWS SAM CLI on your local machine Create an S3 bucket Use `sam package` to package our code and save it in S3 Use `sam depl 阅读全文
posted @ 2021-04-09 19:32 Zhentiw 阅读(107) 评论(0) 推荐(0)
摘要:Continue with Part 1 Overview Instead of manully build Docker image, this time, we use CodeBuild to build the Docker image for us. Update buildspec.ym 阅读全文
posted @ 2021-04-07 03:22 Zhentiw 阅读(231) 评论(0) 推荐(0)
摘要:Creating an IAM User with Admin Permissions Navigate to IAM > Users. Click Add user. Set the following values: User name: k8-admin Access type: Progra 阅读全文
posted @ 2021-04-06 03:15 Zhentiw 阅读(177) 评论(0) 推荐(0)
摘要:Introduction In this hands-on lab, we go through the process of configuring a CodeCommit repository from the AWS Command Line Interface. We also go th 阅读全文
posted @ 2021-04-04 17:05 Zhentiw 阅读(141) 评论(0) 推荐(0)
摘要:Route 53 Route 53 is a cloud domain name system (DNS) service that has servers distributed around the globe used to translates human-readable names li 阅读全文
posted @ 2021-03-17 15:44 Zhentiw 阅读(81) 评论(0) 推荐(0)