Get Rest Apis
apigateway_get_rest_apis | R Documentation |
Lists the RestApis resources for your collection¶
Description¶
Lists the RestApis resources for your collection.
Usage¶
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",
name = "string",
description = "string",
createdDate = as.POSIXct(
"2015-01-01"
),
version = "string",
warnings = list(
"string"
),
binaryMediaTypes = list(
"string"
),
minimumCompressionSize = 123,
apiKeySource = "HEADER"|"AUTHORIZER",
endpointConfiguration = list(
types = list(
"REGIONAL"|"EDGE"|"PRIVATE"
),
vpcEndpointIds = list(
"string"
)
),
policy = "string",
tags = list(
"string"
),
disableExecuteApiEndpoint = TRUE|FALSE,
rootResourceId = "string"
)
)
)