1

を使用して、ネストされたディレクトリにハンドラーを持つラムダを展開する際に問題が発生していsamます。

次の手順を実行します。

  1. パッケージ:

    sam パッケージ --template template.yaml --output-template-file packaged.yaml --s3-bucket

次のステップで使用する packaged.yaml を作成します。

  1. 配備:

    aws cloudformation deploy --template-file /Users/localuser/Do/learn-sam/dynamo-stream-lambda/packaged.yaml --stack-name barkingstack

エラー

Failed to create the changeset: Waiter ChangeSetCreateComplete failed: Waiter encountered a terminal failure state Status: FAILED. Reason: Transform AWS::Serverless-2016-10-31 failed with: Invalid Serverless Application Specification document. Number of errors found: 1. Resource with id [PublishNewBark] is invalid. Missing required property 'Handler'.

Cloudformation/SAM テンプレート

AWSTemplateFormatVersion: '2010-09-09'
Transform: 'AWS::Serverless-2016-10-31'

Globals:
  Function:
    Runtime: nodejs8.10
    Timeout: 300

Resources:
  PublishNewBark:
    Type: AWS::Serverless::Function
    FunctionName: publishNewBark
    CodeUri: .
    Handler: src/index.handler
    Role: "<ROLE_ARN>"
    Description: Reads from the DynamoDB Stream and publishes to an SNS topic
    Events:
      - ReceiveBark:
          Type: DynamoDB
          Stream: !GetAtt BarkTable.StreamArn
          StartingPosition: TRIM_HORIZON
          BatchSize: 1


  BarkTable:
    Type: AWS::DynamoDB::Table
    Properties:
      TableName: BarkTable
      KeySchema:
        - KeyType: HASH
          AttributeName: id
      AttributeDefinitions:
        - AttributeName: id
          AttributeType: S
      StreamSpecification:
        StreamViewType: NEW_AND_OLD_IMAGES
      ProvisionedThroughput:
        WriteCapacityUnits: 5
        ReadCapacityUnits: 5

  WooferTopic:
    Type: AWS::SNS::Topic
    Properties:
      DisplayName: wooferTopic
      TopicName: wooferTopic
      Subscription:
        - Endpoint: <my_email>
          Protocol: email

ディレクトリ構造

root_directory/ events/ (サンプル イベント用) policies/ (CLI を使用してラムダ用に作成される IAM ロール用) src/index.js package.json node_modules template.yaml

ハンドラーコード

async function handler (event, context) {
  console.log(JSON.stringify(event, null, 2))
  return {}
}

module.exports = {handler}
4

1 に答える 1