Get Sdk Types
apigateway_get_sdk_types | R Documentation |
Gets SDK types¶
Description¶
Gets SDK types
Usage¶
apigateway_get_sdk_types(position, limit)
Arguments¶
position |
The current pagination position in the paged result set. |
limit |
The maximum number of returned results per page. The default value is 25 and the maximum value is 500. |
Value¶
A list with the following syntax:
list(
position = "string",
items = list(
list(
id = "string",
friendlyName = "string",
description = "string",
configurationProperties = list(
list(
name = "string",
friendlyName = "string",
description = "string",
required = TRUE|FALSE,
defaultValue = "string"
)
)
)
)
)
Request syntax¶
svc$get_sdk_types(
position = "string",
limit = 123
)