본문 바로가기
Infra#Infra#AWS#Serverless조회 20

AWS SAM란?Serverless Application Model

정의

AWS 서버리스 앱용 IaC. CloudFormation 확장.

SAM이란?

Lambda·API Gateway·DynamoDB 조합을 간소화된 YAML로 정의.

Resources:
  MyApi:
    Type: AWS::Serverless::Function
    Properties:
      Handler: index.handler
      Runtime: nodejs22.x
      Events:
        Api:
          Type: HttpApi

🔗 함께 보면 좋은 용어

Infra 전체 →