[][src]Struct rusoto_apigatewayv2::RouteSettings

pub struct RouteSettings {
    pub data_trace_enabled: Option<bool>,
    pub detailed_metrics_enabled: Option<bool>,
    pub logging_level: Option<String>,
    pub throttling_burst_limit: Option<i64>,
    pub throttling_rate_limit: Option<f64>,
}

Represents a collection of route settings.

Fields

data_trace_enabled: Option<bool>

Specifies whether (true) or not (false) data trace logging is enabled for this route. This property affects the log entries pushed to Amazon CloudWatch Logs.

detailed_metrics_enabled: Option<bool>

Specifies whether detailed metrics are enabled.

logging_level: Option<String>

Specifies the logging level for this route: DEBUG, INFO, or WARN. This property affects the log entries pushed to Amazon CloudWatch Logs.

throttling_burst_limit: Option<i64>

Specifies the throttling burst limit.

throttling_rate_limit: Option<f64>

Specifies the throttling rate limit.

Trait Implementations

impl Clone for RouteSettings[src]

impl Default for RouteSettings[src]

impl PartialEq<RouteSettings> for RouteSettings[src]

impl Debug for RouteSettings[src]

impl StructuralPartialEq for RouteSettings[src]

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

impl Serialize for RouteSettings[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self