[][src]Struct rusoto_application_insights::Problem

pub struct Problem {
    pub affected_resource: Option<String>,
    pub end_time: Option<f64>,
    pub feedback: Option<HashMap<String, String>>,
    pub id: Option<String>,
    pub insights: Option<String>,
    pub resource_group_name: Option<String>,
    pub severity_level: Option<String>,
    pub start_time: Option<f64>,
    pub status: Option<String>,
    pub title: Option<String>,
}

Describes a problem that is detected by correlating observations.

Fields

affected_resource: Option<String>

The resource affected by the problem.

end_time: Option<f64>

The time when the problem ended, in epoch seconds.

feedback: Option<HashMap<String, String>>

Feedback provided by the user about the problem.

id: Option<String>

The ID of the problem.

insights: Option<String>

A detailed analysis of the problem using machine learning.

resource_group_name: Option<String>

The name of the resource group affected by the problem.

severity_level: Option<String>

A measure of the level of impact of the problem.

start_time: Option<f64>

The time when the problem started, in epoch seconds.

status: Option<String>

The status of the problem.

title: Option<String>

The name of the problem.

Trait Implementations

impl Clone for Problem[src]

impl Debug for Problem[src]

impl Default for Problem[src]

impl<'de> Deserialize<'de> for Problem[src]

impl PartialEq<Problem> for Problem[src]

impl StructuralPartialEq for Problem[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.