[][src]Struct rusoto_application_insights::UpdateComponentConfigurationRequest

pub struct UpdateComponentConfigurationRequest {
    pub component_configuration: Option<String>,
    pub component_name: String,
    pub monitor: Option<bool>,
    pub resource_group_name: String,
    pub tier: Option<String>,
}

Fields

component_configuration: Option<String>

The configuration settings of the component. The value is the escaped JSON of the configuration. For more information about the JSON format, see Working with JSON. You can send a request to DescribeComponentConfigurationRecommendation to see the recommended configuration for a component. For the complete format of the component configuration file, see Component Configuration.

component_name: String

The name of the component.

monitor: Option<bool>

Indicates whether the application component is monitored.

resource_group_name: String

The name of the resource group.

tier: Option<String>

The tier of the application component. Supported tiers include DOT_NET_WORKER, DOT_NET_WEB, DOT_NET_CORE, SQL_SERVER, and DEFAULT.

Trait Implementations

impl Clone for UpdateComponentConfigurationRequest[src]

impl Debug for UpdateComponentConfigurationRequest[src]

impl Default for UpdateComponentConfigurationRequest[src]

impl PartialEq<UpdateComponentConfigurationRequest> for UpdateComponentConfigurationRequest[src]

impl Serialize for UpdateComponentConfigurationRequest[src]

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