Skip to content

Serverless framework plugin to configure Binary responses in API Gateway

Notifications You must be signed in to change notification settings

hejare/serverless-apigwy-binary

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

serverless-apigwy-binary

Serverless framework plugin to configure Binary responses in API Gateway

Original code from codebox

Installation

Install to your Serverless project via npm

$ npm install --save serverless-apigwy-binary

Usage

Add the plugin to your serverless.yml

# serverless.yml

plugins:
  - serverless-apigwy-binary

Add the property contentHandling: CONVERT_TO_BINARY to an HTTP event

# serverless.yml

functions:
  hello:
    handler: handler.hello
    events:
      - http:
          integration: lambda
          path: hello
          method: get
          contentHandling: CONVERT_TO_BINARY

About

Serverless framework plugin to configure Binary responses in API Gateway

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%