x-amazon-apigateway-integration.responseTemplates 对象
为给定的 MIME 类型响应负载指定映射模板。
属性名称 | 类型 | 说明 |
---|---|---|
|
string |
指定映射模板,将集成响应正文转换为给定 MIME 类型的方法响应正文。有关创建映射模板的信息,请参阅 PetStore 映射模板。 |
x-amazon-apigateway-integration.responseTemplate 示例
下面的示例为 application/json
和 application/xml
MIME 类型的请求负载设置了映射模板。
"responseTemplates" : { "application/json" : "#set ($root=$input.path('$')) { \"stage\": \"$root.name\", \"user-id\": \"$root.key\" }", "application/xml" : "#set ($root=$input.path('$')) <stage>$root.name</stage> " }