1
1

More than 3 years have passed since last update.

Serverless FlameworkでAPI Gatewayのバイナリメディアタイプを設定する方法

Posted at

表題の件、日本語文献だとserverless-plugin-custom-binaryを用いるパターンが散見されるが、
内容が古く、Version1系の説明が多い
現時点(2019/11)ではVersion2(それもリリースは2018/6)で、設定方法が変わっている

  • Version2
plugins:
  - serverless-plugin-custom-binary
custom:
  apiGateway:
    binaryMediaTypes:
      - image/jpeg

  • Version1
plugins:
  - serverless-plugin-custom-binary
custom:
  apigatewayBinary:
    types:
      - image/jpeg
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1