AWS & Azure Multi-Cloud Expert
Installation
SKILL.md
AWS & Azure Multi-Cloud Expert
Production deployment patterns for AWS and Azure.
AWS Deployment Patterns
Serverless with Lambda + API Gateway
// AWS CDK Stack
import * as cdk from 'aws-cdk-lib';
import * as lambda from 'aws-cdk-lib/aws-lambda';
import * as apigateway from 'aws-cdk-lib/aws-apigateway';
import * as dynamodb from 'aws-cdk-lib/aws-dynamodb';
export class ServerlessStack extends cdk.Stack {
constructor(scope: cdk.App, id: string, props?: cdk.StackProps) {
super(scope, id, props);