x-amazon-apigateway-integration.requestTemplates 对象
为给定 MIME 类型的请求负载指定映射模板。
属性名称 | 类型 | 说明 |
---|---|---|
|
string |
MIME 类型的一个示例是 |
x-amazon-apigateway-integration.requestTemplates 示例
下面的示例为 application/json
和 application/xml
MIME 类型的请求负载设置了映射模板。
"requestTemplates" : { "application/json" : "#set ($root=$input.path('$')) { \"stage\": \"$root.name\", \"user-id\": \"$root.key\" }", "application/xml" : "#set ($root=$input.path('$')) <stage>$root.name</stage> " }