Get Apis
apigatewayv2_get_apis | R Documentation |
Gets a collection of Api resources¶
Description¶
Gets a collection of Api resources.
Usage¶
Arguments¶
MaxResults
The maximum number of elements to be returned for this resource.
NextToken
The next page of elements from this collection. Not valid for the last element of the collection.
Value¶
A list with the following syntax:
list(
Items = list(
list(
ApiEndpoint = "string",
ApiGatewayManaged = TRUE|FALSE,
ApiId = "string",
ApiKeySelectionExpression = "string",
CorsConfiguration = list(
AllowCredentials = TRUE|FALSE,
AllowHeaders = list(
"string"
),
AllowMethods = list(
"string"
),
AllowOrigins = list(
"string"
),
ExposeHeaders = list(
"string"
),
MaxAge = 123
),
CreatedDate = as.POSIXct(
"2015-01-01"
),
Description = "string",
DisableSchemaValidation = TRUE|FALSE,
DisableExecuteApiEndpoint = TRUE|FALSE,
ImportInfo = list(
"string"
),
Name = "string",
ProtocolType = "WEBSOCKET"|"HTTP",
RouteSelectionExpression = "string",
Tags = list(
"string"
),
Version = "string",
Warnings = list(
"string"
)
)
),
NextToken = "string"
)