List Meshes
appmesh_list_meshes | R Documentation |
Returns a list of existing service meshes¶
Description¶
Returns a list of existing service meshes.
Usage¶
appmesh_list_meshes(limit, nextToken)
Arguments¶
limit |
The maximum number of results returned by
|
nextToken |
The This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes. |
Value¶
A list with the following syntax:
list(
meshes = list(
list(
arn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
meshName = "string",
meshOwner = "string",
resourceOwner = "string",
version = 123
)
),
nextToken = "string"
)
Request syntax¶
svc$list_meshes(
limit = 123,
nextToken = "string"
)