Properties
| Name | Type | Description |
|---|---|---|
| type | string | |
| httpMethod | string | |
| uri | string | |
| connectionType | string | |
| connectionId | string | |
| credentials | string | |
| requestParameters | object | |
| requestTemplates | object | |
| passthroughBehavior | string | |
| contentHandling | string | |
| timeoutInMillis | integer | |
| cacheNamespace | string | |
| cacheKeyParameters | array |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "PutIntegrationRequest",
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"HTTP",
"HTTP_PROXY",
"AWS",
"AWS_PROXY",
"MOCK"
]
},
"httpMethod": {
"type": "string"
},
"uri": {
"type": "string"
},
"connectionType": {
"type": "string",
"enum": [
"INTERNET",
"VPC_LINK"
]
},
"connectionId": {
"type": "string"
},
"credentials": {
"type": "string"
},
"requestParameters": {
"type": "object"
},
"requestTemplates": {
"type": "object"
},
"passthroughBehavior": {
"type": "string",
"enum": [
"WHEN_NO_MATCH",
"WHEN_NO_TEMPLATES",
"NEVER"
]
},
"contentHandling": {
"type": "string",
"enum": [
"CONVERT_TO_BINARY",
"CONVERT_TO_TEXT"
]
},
"timeoutInMillis": {
"type": "integer"
},
"cacheNamespace": {
"type": "string"
},
"cacheKeyParameters": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"type"
]
}