0Pricing
Serverless Backend with AWS Lambda & API Gateway · レッスン

SAMアプリケーションのデプロイ

SAM CLIを使ってサーバーレスアプリケーションをビルドし、ローカルでテストしてAWSにデプロイするとともに、複数の環境を管理します。

「SAMアプリケーションのデプロイ」はCoddyKit上の無料Serverless Backend with AWS Lambda & API Gatewayレッスンです。 これはレッスン3/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはServerless Backend with AWS Lambda & API Gateway学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Serverless Backend with AWS Lambda & API Gatewayコースには全4レッスンが含まれています。

このレッスンの一部はまだ翻訳されておらず、英語で表示されています。

Introduction to SAM CLI

Welcome to deploying SAM applications! The AWS Serverless Application Model Command Line Interface (SAM CLI) is your best friend for building and managing serverless projects.

It extends AWS CloudFormation to simplify defining serverless resources. The SAM CLI provides commands to build, test, and deploy your serverless applications.

Building Your Application

Before deploying, your SAM application needs to be built. The sam build command takes your application code and dependencies, then prepares them for deployment.

  • It packages dependencies (e.g., Python libraries).
  • It transpiles code if needed (e.g., TypeScript to JavaScript).
  • It creates a deployable artifact in a .aws-sam/build directory.

Example Lambda Function

Let's look at a simple Python Lambda function and its template.yaml. The sam build command processes this to create deployable code.

After running sam build, the packaged code would be ready for local testing or deployment.

import json

def lambda_handler(event, context):
    """
    A simple Lambda handler.
    """
    return {
        "statusCode": 200,
        "headers": {
            "Content-Type": "application/json"
        },
        "body": json.dumps({
            "message": "Hello from your SAM Lambda!"
        })
    }

Local Testing with `sam local invoke`

The SAM CLI allows you to test your Lambda functions locally without deploying them to AWS, saving time and costs. Use sam local invoke to simulate a Lambda invocation.

You can pass event data directly to your function, just like how AWS services (like API Gateway or S3) would trigger it.

Running a Lambda Locally

To test the Lambda function from the previous scene, you'd use sam local invoke with the logical ID of your function and an event file.

For example, sam local invoke MyHelloWorldFunction --event event.json would test a function named 'MyHelloWorldFunction' using the data in event.json.

{
  "httpMethod": "GET",
  "path": "/hello",
  "queryStringParameters": null,
  "headers": {
    "Accept": "*/*"
  },
  "body": null
}

Local API Testing with `sam local start-api`

If your SAM application includes an API Gateway, you can simulate the entire API locally using sam local start-api. This command starts a local web server that mimics API Gateway.

You can then send HTTP requests to http://127.0.0.1:3000 and test your API endpoints end-to-end, locally.

Preparing for Deployment: `sam deploy`

Once your application is built and tested locally, you're ready to deploy it to AWS. The sam deploy command is used for this.

It packages your application artifacts, uploads them to an S3 bucket, and then uses AWS CloudFormation to deploy your serverless resources.

Your First Guided Deployment

For your first deployment, using the --guided flag is highly recommended. It will walk you through setting up necessary parameters interactively.

  • Stack Name: Unique identifier for your CloudFormation stack.
  • AWS Region: Where to deploy your resources.
  • S3 Bucket: For storing deployment artifacts.
  • Capabilities: Acknowledging IAM resource creation.

Example: sam deploy --guided

Managing Multiple Environments

In real-world scenarios, you'll often have development, staging, and production environments. SAM CLI helps manage this by allowing you to specify different stack names and parameters.

  • Use distinct Stack Names (e.g., my-app-dev, my-app-prod).
  • Use --parameter-overrides to pass different values for environment-specific configurations (e.g., database names, API keys).

Quick Check

Which SAM CLI command is used to test your API Gateway endpoints locally?

Recap & Next Steps

Congratulations! You've learned the essential steps for building, testing, and deploying serverless applications using the SAM CLI.

  • sam build: Packages and prepares your application.
  • sam local invoke: Tests individual Lambda functions locally.
  • sam local start-api: Simulates API Gateway for local API testing.
  • sam deploy: Deploys your application to AWS CloudFormation.

Mastering these commands is key to efficient serverless development!

よくある質問

「SAMアプリケーションのデプロイ」レッスンは無料ですか?

はい。「SAMアプリケーションのデプロイ」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Serverless Backend with AWS Lambda & API Gatewayコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Serverless Backend with AWS Lambda & API Gatewayコースには全4レッスンが含まれています。

「SAMアプリケーションのデプロイ」で何を学びますか?

SAM CLIを使ってサーバーレスアプリケーションをビルドし、ローカルでテストしてAWSにデプロイするとともに、複数の環境を管理します。 ブラウザで直接実行するハンズオンコードでServerless Backend with AWS Lambda & API Gatewayを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

Serverless Backend with AWS Lambda & API Gatewayを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのServerless Backend with AWS Lambda & API Gatewayは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン3/4です。

「SAMアプリケーションのデプロイ」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このServerless Backend with AWS Lambda & API Gatewayレッスンでコードを書いて実行できますか?

はい。すべてのServerless Backend with AWS Lambda & API Gatewayレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. AWS SAM入門
  2. サーバーレスリソースの定義
  3. SAMアプリケーションのデプロイ
  4. SAM CLIによるローカルテストとデバッグ
← Serverless Backend with AWS Lambda & API Gatewayに戻る