List Nodegroups
eks_list_nodegroups | R Documentation |
Lists the managed node groups associated with the specified cluster in your Amazon Web Services account in the specified Amazon Web Services Region¶
Description¶
Lists the managed node groups associated with the specified cluster in your Amazon Web Services account in the specified Amazon Web Services Region. Self-managed node groups aren't listed.
Usage¶
eks_list_nodegroups(clusterName, maxResults, nextToken)
Arguments¶
clusterName |
[required] The name of your cluster. |
maxResults |
The maximum number of results, returned in paginated output. You
receive |
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(
nodegroups = list(
"string"
),
nextToken = "string"
)
Request syntax¶
svc$list_nodegroups(
clusterName = "string",
maxResults = 123,
nextToken = "string"
)