Skip to content

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 nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

maxResults

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. If you don't specify a value, the default is 100 results.

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
)