List Access Entries
eks_list_access_entries | R Documentation |
Lists the access entries for your cluster¶
Description¶
Lists the access entries for your cluster.
Usage¶
eks_list_access_entries(clusterName, associatedPolicyArn, maxResults,
nextToken)
Arguments¶
clusterName |
[required] The name of your cluster. |
associatedPolicyArn |
The ARN of an |
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(
accessEntries = list(
"string"
),
nextToken = "string"
)
Request syntax¶
svc$list_access_entries(
clusterName = "string",
associatedPolicyArn = "string",
maxResults = 123,
nextToken = "string"
)