일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- IOT Core
- 홈어시스턴트
- thread
- lambda
- 플라스크
- 디자인패턴
- 파이썬
- 완속충전기
- 펌웨어
- 라즈베리파이
- 전기차충전기
- 전기차충전
- esp8266
- flask
- OCPP
- AWS
- 급속충전기
- YMODEM
- raspberry
- everon
- dynamodb
- 충전기
- 에버온
- 서버리스
- STM32
- Android
- 보안
- 안드로이드
- 전기차
- homeassistant
- Today
- Total
목록lambda (9)
Louie NRT Story
작성일: 22년 9월 8일 PS. 유튜브에서 서버리스 예제를 따라함. 필자는 리엑트를 처음 해봐서 많은 시행착오가 있었음 -- [AWS 서버리스] 채팅 어플리케이션 - 01 -- https://louie0724.tistory.com/577 [AWS 서버리스] 채팅 어플리케이션 - 01 작성일: 22년 9월 7일 PS. 유튜브를 통하여 Lambda, APIGateway, DynamoDB를 이용하여 채팅 서버를 만드는 것을 실습한 내용을 정리하였음 Contents 1. IAM 역할생성 2. APIGateWay 생성 3. Lambda 생성 1. IAM.. louie0724.tistory.com -- [AWS 서버리스] 채팅 어플리케이션 - 02 -- https://louie0724.tistory.com/578..
작성일: 22년 9월 8일 PS. 유튜브를 통해 생성과정을 따라해봄 - 채팅 어플리케이션 - 01 - https://louie0724.tistory.com/577 [AWS 서버리스] 채팅 어플리케이션 - 01 작성일: 22년 9월 7일 PS. 유튜브를 통하여 Lambda, APIGateway, DynamoDB를 이용하여 채팅 서버를 만드는 것을 실습한 내용을 정리하였음 Contents 1. IAM 역할생성 2. APIGateWay 생성 3. Lambda 생성 1. IAM.. louie0724.tistory.com - 채팅 어플리케이션 - 03 - https://louie0724.tistory.com/579 [AWS 서버리스] 채팅 어플리케이션 - 03 작성일: 22년 9월 8일 PS. 유튜브에서 서버리스..
작성일: 22년 9월 7일 PS. 유튜브를 통하여 Lambda, APIGateway, DynamoDB를 이용하여 채팅 서버를 만드는 것을 실습한 내용을 정리하였음 - 채팅 어플리케이션 - 02 - https://louie0724.tistory.com/578 [AWS 서버리스] 채팅 어플리케이션 - 02 작성일: 22년 9월 8일 PS. 유튜브를 통해 생성과정을 따라해봄 채팅 어플리케이션 - 01 https://louie0724.tistory.com/577 [AWS 서버리스] 채팅 어플리케이션 - 01 작성일: 22년 9월 7일 PS. 유튜브를 통하여 L.. louie0724.tistory.com - 채팅 어플리케이션 - 03 - https://louie0724.tistory.com/579 [AWS 서버리..
Writed: 4 FEB 2020 Index 1. Create Table 2. Create a Rule with a AWS Lambda Action 3. Runing Lambda 1. Create Table 1) Choose create table 2) Enter name and Primary key - DynamoDB is a schema-less database that only requires a table name and primary key. - The table's primary key is made up of one or two attributes that uniquely identify items, partition the data, and sort data within each parti..
Writed: 27 JAN 20 Index 1. Create Policy 2. Register a thing 3. Create the certification and connect policy that was made before 4. Test the connection to IoT Core 1. Create Policy 1) In the left navigation pane, choose secure, and then choose Policies. Click create a policy button 2) Enter restriction infomation that mean allowed all clients to connect to AWS IOT. - In the Action field, enter "..
Writed: 27 JAN 2020 Index 1. Make Lambda Function 2. Create API Gateway 3. Test an API's invoke url 1. Make Lambda Function 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 'use strict'; console.log('Loading hello world function'); exports.handler = async (event) => { let name = "you"; l..
Writed: 14 JAN 2020 순서 1. Lambda 만들기 2. 규칙 만들기 3. 테스트 하기 1. Lambda 만들기 1) 기존의 예제를 활용함 2) 코드를 다음과 같이 씀. 그리고 기존에 만든 SNS 를 통하여 구독자에게 메일을 보낼 수 있도록 arn 주소를 기입해줌 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 from __future__ import print_function import json import boto3 print('Loading function') def lambda_handler(event, context): # Parse the JSON message eventText = json.dumps(eve..
Download file from S3 and upload this again.1234567891011121314151617181920import boto3import osimport sysimport urllib s3_client = boto3.client('s3') def handler(event, context): bucket = 'codebuild-oregon-louie0724-output-bucket' key = 'test01.png' raw_key = urllib.parse.unquote_plus(key) download_path = '/tmp/{}'.format(key) upload_path = '/tmp/{}'.format(key) s3_client.download_file(bucket, ..
Create Table12345678910111213141516171819202122232425262728293031323334import boto3 dynamodb = boto3.resource('dynamodb', region_name='us-west-2')table = dynamodb.create_table( TableName='Movies', KeySchema=[ { 'AttributeName': 'year', 'KeyType': 'HASH' #Partition key }, { 'AttributeName': 'title', 'KeyType': 'RANGE' #Sort key } ], AttributeDefinitions=[ { 'AttributeName': 'year', 'AttributeType..