1.1.1 • Published 2 years ago

serverless-aws-response-schema-plugin v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Serverless Aws Response Schema Plugin

Plugin for Serverless Framework to add response model to AWS Rest API, this will allow you to build documentation from API Gateway, complete with possible API Responses.

This plugin was build for our internal need. It could not work in every configuration.

This plugin has been generated using the plugin template from the Serverless Framework.

Getting Started

Install the plugin via npm i --save-dev serverless-aws-response-schema-plugin and add to the plugins section of your serverless.yml.

plugins:
  - serverless-aws-response-schema-plugin

Then you will be able to add configuration to your http events:

testSchema:
  handler: src/handler.default
  events:
    - http:
        path: /test
        method: ANY
        responseSchemas:
          200: 
            application/json: ${file(api-schemas/index.response.json)}
          500: 
            application/json: ${file(api-schemas/error.response.json)}