Description Usage Arguments Value Request syntax
View source: R/apigateway_operations.R
Get the integration settings.
1 | apigateway_get_integration(restApiId, resourceId, httpMethod)
|
restApiId |
[required] [Required] The string identifier of the associated RestApi. |
resourceId |
[required] [Required] Specifies a get integration request's resource identifier |
httpMethod |
[required] [Required] Specifies a get integration request's HTTP method. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | list(
type = "HTTP"|"AWS"|"MOCK"|"HTTP_PROXY"|"AWS_PROXY",
httpMethod = "string",
uri = "string",
connectionType = "INTERNET"|"VPC_LINK",
connectionId = "string",
credentials = "string",
requestParameters = list(
"string"
),
requestTemplates = list(
"string"
),
passthroughBehavior = "string",
contentHandling = "CONVERT_TO_BINARY"|"CONVERT_TO_TEXT",
timeoutInMillis = 123,
cacheNamespace = "string",
cacheKeyParameters = list(
"string"
),
integrationResponses = list(
list(
statusCode = "string",
selectionPattern = "string",
responseParameters = list(
"string"
),
responseTemplates = list(
"string"
),
contentHandling = "CONVERT_TO_BINARY"|"CONVERT_TO_TEXT"
)
),
tlsConfig = list(
insecureSkipVerification = TRUE|FALSE
)
)
|
1 2 3 4 5 | svc$get_integration(
restApiId = "string",
resourceId = "string",
httpMethod = "string"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.