如何为我的API添加有关AWS SAM模板的更多详细信息

时间:2018-12-21 23:24:49

标签: amazon-web-services aws-api-gateway aws-serverless serverless-application-model

我对AWS无服务器世界和SAM来说都是新手。我只是做了一个实际上可以完全正常工作的小型机器人,但是当我开始做一个SAM模板来定义它时,我怀疑自己无法弄清楚。我有一个api网关,它有一个特定的映射模板。我需要sam模板包括它,但它不包含,请检查模板:

AWSTemplateFormatVersion: '2010-09-09'
Transform: 'AWS::Serverless-2016-10-31'
Description: An AWS Serverless Specification template describing your function.
Resources:
  certainty:
    Type: 'AWS::Serverless::Function'
    Properties:
      Handler: index.handler
      Runtime: nodejs8.10
      CodeUri: ./certainty-function
      Description: >-
        This lambda monitors the ssl certificates expirations
        and communite with slack.
      MemorySize: 128
      Timeout: 20
      Role: 'arn:aws:iam::116738426468:role/ssl_cert_alerter'
      Events:
        Schedule1:
          Type: Schedule
          Properties:
            Schedule: rate(1 day)
        Api1:
          Type: Api
          Properties:
            Path: /
            Method: POST
  certaintyassistant:
    Type: 'AWS::Serverless::Function'
    Properties:
      Handler: index.handler
      Runtime: nodejs8.10
      CodeUri: ./certainty-assistant-function
      Description: >-
        This lambda invoke Certainty and answer to the slack
        user.
      MemorySize: 1152
      Timeout: 300
      Role: 'arn:aws:iam::116738426468:role/ssl_cert_alerter'
      Events:
        Api1:
          Type: Api
          Properties:
            Path: /show-all
            Method: POST
      Environment:
        Variables:
          SLACK_TOKEN: oGprdUe0br93yH62fuezDHQh

所以说完这些之后,我希望你们看到我如何在api上管理映射:

## designed just for post format.
{
    #foreach( $token in $input.path('$').split('&') )
        #set( $keyVal = $token.split('=') )
        #set( $keyValSize = $keyVal.size() )
        #if( $keyValSize >= 1 )
            #set( $key = $util.urlDecode($keyVal[0]) )
            #if( $keyValSize >= 2 )
                #set( $val = $util.urlDecode($keyVal[1]) )
            #else
                #set( $val = '' )
            #end
            "$key": "$val"#if($foreach.hasNext),#end
        #end
    #end
}

并且我需要弄清楚如何在我的模板在cloudformation上更新堆栈时为我的模板创建该映射的详细信息。

也许我的方法不好,请告诉我该怎么做。

谢谢,丹尼尔

1 个答案:

答案 0 :(得分:1)

要实现此目的,您必须向SAM模板添加AWS::Serverless::Api资源,并使用其Definition属性将您的API定义为OpenAPI模板,您可以在其中包含请求和响应映射。

AWS SAM的git存储库包含example how to include inline swagger into your template和用于contains information about a set of OpenAPI extensions的API网关define details like requestTemplates的文档。