pub struct Insight {
pub id: String,
pub name: String,
pub category: String,
pub kubernetes_version: String,
pub description: String,
pub recommendation: String,
pub status: String,
pub reason: String,
pub last_refresh_time: DateTime<Utc>,
pub last_transition_time: DateTime<Utc>,
}Expand description
An upgrade-readiness/misconfiguration Insight that EKS auto-generates for a
cluster, a cluster sub-resource keyed by its generated id. Read back through
ListInsights / DescribeInsight.
Fields§
§id: String§name: String§category: String§kubernetes_version: String§description: String§recommendation: String§status: StringThe InsightStatusValue (PASSING / WARNING / ERROR / UNKNOWN).
reason: String§last_refresh_time: DateTime<Utc>§last_transition_time: DateTime<Utc>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Insight
impl<'de> Deserialize<'de> for Insight
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Insight
impl RefUnwindSafe for Insight
impl Send for Insight
impl Sync for Insight
impl Unpin for Insight
impl UnsafeUnpin for Insight
impl UnwindSafe for Insight
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more