일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 전기차
- 보안
- 플라스크
- 급속충전기
- 파이썬
- STM32
- 서버리스
- 충전기
- OCPP
- Android
- dynamodb
- esp8266
- 안드로이드
- flask
- 홈어시스턴트
- everon
- 펌웨어
- 디자인패턴
- 완속충전기
- homeassistant
- 라즈베리파이
- 전기차충전기
- YMODEM
- lambda
- thread
- 전기차충전
- AWS
- 에버온
- raspberry
- Today
- Total
목록dynamodb (7)
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: 13 JAN 2020 순서 1. 규칙 생성 2. 테스트 1. 규칙 생성 - topic이 my/greenhouse 이면 이벤트가 발생됨 - 이벤트 발생시 DynamoDB에 데이터를 넣는것을 선택함 - DynamoDB에 테이블이 없으므로 새로 생성함 - DynamoDB에 GreenhouseTable이 생성되고 있음 - 해시키 값에 MQTT로 넘어올 JSON 형태의 KEY 값이 들어감 2. DynamoDB에 데이터가 저장되는지 테스트 - 데이터가 저장되었음을 확인 할 수 있음
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..