[][src]Struct rusoto_kinesisanalyticsv2::MonitoringConfiguration

pub struct MonitoringConfiguration {
    pub configuration_type: String,
    pub log_level: Option<String>,
    pub metrics_level: Option<String>,
}

Describes configuration parameters for Amazon CloudWatch logging for a Java-based Kinesis Data Analytics application. For more information about CloudWatch logging, see Monitoring.

Fields

configuration_type: String

Describes whether to use the default CloudWatch logging configuration for an application. You must set this property to CUSTOM in order to set the LogLevel or MetricsLevel parameters.

log_level: Option<String>

Describes the verbosity of the CloudWatch Logs for an application.

metrics_level: Option<String>

Describes the granularity of the CloudWatch Logs for an application.

Trait Implementations

impl Clone for MonitoringConfiguration[src]

impl Debug for MonitoringConfiguration[src]

impl Default for MonitoringConfiguration[src]

impl PartialEq<MonitoringConfiguration> for MonitoringConfiguration[src]

impl Serialize for MonitoringConfiguration[src]

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