
AWS_관리형 서비스로 서버리스 아키텍처 구현
·
Cloud/AWS
- 목차 - 1. 서버리스 아키텍처 실습 1. 서버리스 아키텍처 실습 # Load-Inventory Lambda function # # This function is triggered by an object being created in an Amazon S3 bucket. # The file is downloaded and each line is inserted into a DynamoDB table. import json, urllib, boto3, csv # Connect to S3 and DynamoDB s3 = boto3.resource('s3') dynamodb = boto3.resource('dynamodb') # Connect to the DynamoDB tables inventoryTab..