List Insights
| eks_list_insights | R Documentation |
Returns a list of all insights checked for against the specified cluster¶
Description¶
Returns a list of all insights checked for against the specified cluster. You can filter which insights are returned by category, associated Kubernetes version, and status.
Usage¶
Arguments¶
clusterName[required] The name of the Amazon EKS cluster associated with the insights.
filterThe criteria to filter your list of insights for your cluster. You can filter which insights are returned by category, associated Kubernetes version, and status.
maxResultsThe maximum number of identity provider configurations returned by
list_insightsin paginated output. When you use this parameter,list_insightsreturns onlymaxResultsresults in a single page along with anextTokenresponse element. You can see the remaining results of the initial request by sending anotherlist_insightsrequest with the returnednextTokenvalue. This value can be between 1 and 100. If you don't use this parameter,list_insightsreturns up to 100 results and anextTokenvalue, if applicable.nextTokenThe
nextTokenvalue returned from a previous paginatedlist_insightsrequest. When the results of alist_insightsrequest exceedmaxResults, you can use this value to retrieve the next page of results. This value isnullwhen there are no more results to return.
Value¶
A list with the following syntax:
list(
insights = list(
list(
id = "string",
name = "string",
category = "UPGRADE_READINESS",
kubernetesVersion = "string",
lastRefreshTime = as.POSIXct(
"2015-01-01"
),
lastTransitionTime = as.POSIXct(
"2015-01-01"
),
description = "string",
insightStatus = list(
status = "PASSING"|"WARNING"|"ERROR"|"UNKNOWN",
reason = "string"
)
)
),
nextToken = "string"
)