List Capabilities
| eks_list_capabilities | R Documentation |
Lists all managed capabilities in your Amazon EKS cluster¶
Description¶
Lists all managed capabilities in your Amazon EKS cluster. You can use this operation to get an overview of all capabilities and their current status.
Usage¶
eks_list_capabilities(clusterName, nextToken, maxResults)
Arguments¶
clusterName |
[required] The name of the Amazon EKS cluster for which you want to list capabilities. |
nextToken |
The |
maxResults |
The maximum number of results to return in a single call. To
retrieve the remaining results, make another call with the returned
|
Value¶
A list with the following syntax:
list(
capabilities = list(
list(
capabilityName = "string",
arn = "string",
type = "ACK"|"KRO"|"ARGOCD",
status = "CREATING"|"CREATE_FAILED"|"UPDATING"|"DELETING"|"DELETE_FAILED"|"ACTIVE"|"DEGRADED",
version = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
modifiedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_capabilities(
clusterName = "string",
nextToken = "string",
maxResults = 123
)