上一页 1 ··· 121 122 123 124 125 126 127 128 129 ··· 492 下一页
摘要: Secuirty logs generated by AWS WAF musts be sent to a third-party auditing application? Send logs to Kinesis Data Firehose and configure the auditing 阅读全文
posted @ 2022-04-04 17:32 Zhentiw 阅读(46) 评论(0) 推荐(0)
摘要: API activity must be captured from multiple accounts and stored in a centra security account? Use CloudTrail in each account to record API activity an 阅读全文
posted @ 2022-04-04 14:32 Zhentiw 阅读(85) 评论(0) 推荐(0)
摘要: We'll learn how to use Next.js API Routes to hide sensitive information from the clients. In this case, we're calling the JSON Placeholder API with a 阅读全文
posted @ 2022-04-03 17:39 Zhentiw 阅读(61) 评论(0) 推荐(0)
摘要: We'll learn how to create a middleware function for next-connect. This middleware will work at the route level, for example, for every request that hi 阅读全文
posted @ 2022-04-03 17:36 Zhentiw 阅读(124) 评论(0) 推荐(0)
摘要: We'll learn an alternative way of creating API routes using the next-connect package. next-connect gives us an alternative that would feel familiar to 阅读全文
posted @ 2022-04-03 17:34 Zhentiw 阅读(44) 评论(0) 推荐(0)
摘要: Lock away your AWS account root user access keys Create individual IAM users Use groups to assign permissions to IAM users Grant least privilege Get s 阅读全文
posted @ 2022-03-31 03:14 Zhentiw 阅读(53) 评论(0) 推荐(0)
摘要: type Twitter = { tweets: number} type Instagram = {canFollow: boolean} function describeAccount(account: Twitter | Instagram) { if (account.tweets) { 阅读全文
posted @ 2022-03-30 15:26 Zhentiw 阅读(48) 评论(0) 推荐(0)
摘要: src$.pipe( retryWhen(error$ => error$.pipe( switchMap(getNotifier) )) ) // can just be src$.pipe( retry({ delay: getNotifier }) ) /** * The {@link ret 阅读全文
posted @ 2022-03-30 15:21 Zhentiw 阅读(123) 评论(0) 推荐(0)
摘要: // ❎ const object = {} object[key] = value // 👍 better performance const map = new Map() map.set(key, value) 阅读全文
posted @ 2022-03-30 15:10 Zhentiw 阅读(63) 评论(0) 推荐(0)
摘要: High availability and elastic scalaility for web servers? Use EC2 Auto Scaling and an ALB across Multi AZs Low-latency connections over UDP to a pool 阅读全文
posted @ 2022-03-30 02:54 Zhentiw 阅读(57) 评论(0) 推荐(0)
上一页 1 ··· 121 122 123 124 125 126 127 128 129 ··· 492 下一页