[][src]Struct rusoto_application_insights::ConfigurationEvent

pub struct ConfigurationEvent {
    pub event_detail: Option<String>,
    pub event_resource_name: Option<String>,
    pub event_resource_type: Option<String>,
    pub event_status: Option<String>,
    pub event_time: Option<f64>,
    pub monitored_resource_arn: Option<String>,
}

The event information.

Fields

event_detail: Option<String>

The details of the event in plain text.

event_resource_name: Option<String>

The name of the resource Application Insights attempted to configure.

event_resource_type: Option<String>

The resource type that Application Insights attempted to configure, for example, CLOUDWATCH_ALARM.

event_status: Option<String>

The status of the configuration update event. Possible values include INFO, WARN, and ERROR.

event_time: Option<f64>

The timestamp of the event.

monitored_resource_arn: Option<String>

The resource monitored by Application Insights.

Trait Implementations

impl Clone for ConfigurationEvent[src]

impl Debug for ConfigurationEvent[src]

impl Default for ConfigurationEvent[src]

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

impl PartialEq<ConfigurationEvent> for ConfigurationEvent[src]

impl StructuralPartialEq for ConfigurationEvent[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> 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.