[][src]Struct rusoto_application_insights::CreateApplicationRequest

pub struct CreateApplicationRequest {
    pub cwe_monitor_enabled: Option<bool>,
    pub ops_center_enabled: Option<bool>,
    pub ops_item_sns_topic_arn: Option<String>,
    pub resource_group_name: String,
    pub tags: Option<Vec<Tag>>,
}

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.

ops_center_enabled: Option<bool>

When set to true, creates opsItems for any problems detected on an application.

ops_item_sns_topic_arn: Option<String>

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

resource_group_name: String

The name of the resource group.

tags: Option<Vec<Tag>>

List of tags to add to the application. tag key (Key) and an associated tag value (Value). The maximum length of a tag key is 128 characters. The maximum length of a tag value is 256 characters.

Trait Implementations

impl Clone for CreateApplicationRequest[src]

impl Debug for CreateApplicationRequest[src]

impl Default for CreateApplicationRequest[src]

impl PartialEq<CreateApplicationRequest> for CreateApplicationRequest[src]

impl Serialize for CreateApplicationRequest[src]

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