本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
x-amazon-apigateway-integration. 回應物件
定義方法的回應,並指定從整合回應到方法回應的參數對應或承載對應。
屬性名稱 | 類型 | 描述 |
---|---|---|
Response status pattern |
x-amazon-apigateway-integration. 回應物件 |
用於將整合回應與方法回應匹配的規則運算式,或者是用於捕獲您尚未配置的任何回應的 注意所以此 |
x-amazon-apigateway-integration.responses
範例
下列範例示範來自 2xx
和 302
回應的回應清單。對於2xx
響應,方法響應從 application/json
or application/xml
MIME 類型的集成響應的有效負載映射。這個回應使用提供的對應範本。至於 302
回應,方法回應則會傳回 Location
標頭,該標頭的值來自整合回應承載的 redirect.url
屬性。
"responses" : { "2\\d{2}" : { "statusCode" : "200", "responseTemplates" : { "application/json" : "#set ($root=$input.path('$')) { \"stage\": \"$root.name\", \"user-id\": \"$root.key\" }", "application/xml" : "#set ($root=$input.path('$')) <stage>$root.name</stage> " } }, "302" : { "statusCode" : "302", "responseParameters" : { "method.response.header.Location": "integration.response.body.redirect.url" } } }