Describe Insight
eks_describe_insight | R Documentation |
Returns details about an insight that you specify using its ID¶
Description¶
Returns details about an insight that you specify using its ID.
Usage¶
Arguments¶
clusterName
[required] The name of the cluster to describe the insight for.
id
[required] The identity of the insight to describe.
Value¶
A list with the following syntax:
list(
insight = 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"
),
recommendation = "string",
additionalInfo = list(
"string"
),
resources = list(
list(
insightStatus = list(
status = "PASSING"|"WARNING"|"ERROR"|"UNKNOWN",
reason = "string"
),
kubernetesResourceUri = "string",
arn = "string"
)
),
categorySpecificSummary = list(
deprecationDetails = list(
list(
usage = "string",
replacedWith = "string",
stopServingVersion = "string",
startServingReplacementVersion = "string",
clientStats = list(
list(
userAgent = "string",
numberOfRequestsLast30Days = 123,
lastRequestTime = as.POSIXct(
"2015-01-01"
)
)
)
)
)
)
)
)