[ POST 방식으로 Lambda 함수 불러오기 ]
● lambda 함수 생성
》 AWS 》 Lambda
● API Gateway 생성
》 AWS 》 API Gateway 》 API 생성 》 REST API
● Resource 생성
》 Resources 》 Actions 》 Create Resources 》 Create Method : POST
》 Lambda Function : 만든 함수 연결
● Method Request
》 Request Body 》 Add model
》 Content type : application/json
》 Model name : Empty
● Integration Request
》 Mapping Templates 》 Add mapping template
》 Request body passthrough : When there are no template defined
》 Content-Type : application json
》 Generate Template :
{
"body-json" : $input.json('$')
}
● TEST
● 배포
》 Resources 》 Actions 》 Deploy API
● Post 방식 확인하는 법
① postman 프로그램 사용
② cmd 창에서 명령어 입력
curl -XPOST [invoke url/resource명] -H "Content-Type: application/json" -d [request body]
'CLOUD > Public Cloud' 카테고리의 다른 글
[AWS] IAM : 새로운 사용자 권한 설정 (0) | 2023.03.17 |
---|---|
[AWS] API Gateway : POST - 학생 이름 입력 > 나이 반환 (0) | 2023.03.17 |
[AWS] API Gateway : GET (0) | 2023.03.17 |
[AWS] Lambda : 함수 생성하기 (.zip) (0) | 2023.03.17 |
[AWS] 웹 브라우저에서 백엔드 주소 보안 설정 (0) | 2023.03.16 |