AWS SAM を使用して単純な API をデプロイしようとしています。API が単純な場合 (つまり、API ゲートウェイを明示的に指定しない場合)。展開は成功します。
ただし、次の展開は失敗します。
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: Sample API
Parameters:
Stage:
Type: String
AllowedValues:
- dev
- sat
- demo
- staging
- prod
Description: Enter dev, sat, demo, staging or prod
Resources:
MyApi:
Type: AWS::Serverless::Api
Properties:
StageName: !Ref Stage
EndpointConfiguration: PRIVATE
DefinitionBody:
swagger: '2.0'
x-amazon-apigateway-policy:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal: "*"
Action: execute-api:Invoke
Resource:
- !Sub arn:aws:execute-api:*:*:*/${Stage}/*
ThumbnailFunction:
Type: 'AWS::Serverless::Function'
Properties:
Runtime: nodejs8.10
Handler: get-config.handler
CodeUri: ./functions
Events:
ThumbnailApi:
Type: Api
Properties:
RestApiId: !Ref MyApi
Path: /thumbnail
Method: GET
エラーメッセージは次のとおりです。
The REST API doesn't contain any methods (Service: AmazonApiGateway;
Status Code: 400; Error Code: BadRequestException
Google を見ると、デプロイを手動で指定するときにこのエラーについて言及されていることがわかります ( here、またはhere )。私の場合、展開は暗黙的であるため、私の問題は異なると思います。
私が使用しているコードは、SAM の例 ( here ) に基づいています。スタックの何が問題なのかを理解するために頭を悩ませています。
解決策への指針はありますか?