[][src]Struct rusoto_application_insights::ApplicationInfo

pub struct ApplicationInfo {
    pub cwe_monitor_enabled: Option<bool>,
    pub life_cycle: Option<String>,
    pub ops_center_enabled: Option<bool>,
    pub ops_item_sns_topic_arn: Option<String>,
    pub remarks: Option<String>,
    pub resource_group_name: Option<String>,
}

Describes the status of the application.

Fields

cwe_monitor_enabled: Option<bool>

Indicates whether Application Insights can listen to CloudWatch events for the application resources, such as instance terminated, failed deployment, and others.

life_cycle: Option<String>

The lifecycle of the application.

ops_center_enabled: Option<bool>

Indicates whether Application Insights will create opsItems for any problem detected by Application Insights for an application.

ops_item_sns_topic_arn: Option<String>

The SNS topic provided to Application Insights that is associated to the created opsItems to receive SNS notifications for opsItem updates.

remarks: Option<String>

The issues on the user side that block Application Insights from successfully monitoring an application. Example remarks include:

  • “Configuring application, detected 1 Errors, 3 Warnings”

  • “Configuring application, detected 1 Unconfigured Components”

resource_group_name: Option<String>

The name of the resource group used for the application.

Trait Implementations

impl Clone for ApplicationInfo[src]

impl Debug for ApplicationInfo[src]

impl Default for ApplicationInfo[src]

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

impl PartialEq<ApplicationInfo> for ApplicationInfo[src]

impl StructuralPartialEq for ApplicationInfo[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, 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> Sealed<T> for T where
    T: ?Sized

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.