302 http ステータスを使用してリダイレクト Web ページの応答テンプレートを作成したいと考えています。awsラムダユーザーインターフェイスを使用して手動で実行できますが、サーバーレスフレームワークバージョンv1で実行する必要があります.
次のコードを試しました。
response:
headers:
Content-Type: "'text/html'"
template: $input.path('$')
statusCodes:
201:
pattern: '' # Default response method
302:
pattern: 'http.*'*'
template: '$input.path('$')'
headers:
Content-Type: "integration.response.body.errorMessage"
しかし、それは機能していません。ステータスコード付きのレスポンステンプレートの書き方.?