[][src]Struct rusoto_application_insights::ApplicationComponent

pub struct ApplicationComponent {
    pub component_name: Option<String>,
    pub component_remarks: Option<String>,
    pub detected_workload: Option<HashMap<String, HashMap<String, String>>>,
    pub monitor: Option<bool>,
    pub os_type: Option<String>,
    pub resource_type: Option<String>,
    pub tier: Option<String>,
}

Describes a standalone resource or similarly grouped resources that the application is made up of.

Fields

component_name: Option<String>

The name of the component.

component_remarks: Option<String>

If logging is supported for the resource type, indicates whether the component has configured logs to be monitored.

detected_workload: Option<HashMap<String, HashMap<String, String>>>

Workloads detected in the application component.

monitor: Option<bool>

Indicates whether the application component is monitored.

os_type: Option<String>

The operating system of the component.

resource_type: Option<String>

The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application ELB, and SQS Queue.

tier: Option<String>

The stack tier of the application component.

Trait Implementations

impl Clone for ApplicationComponent[src]

impl Debug for ApplicationComponent[src]

impl Default for ApplicationComponent[src]

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

impl PartialEq<ApplicationComponent> for ApplicationComponent[src]

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