[][src]Struct rusoto_apigateway::CanarySettings

pub struct CanarySettings {
    pub deployment_id: Option<String>,
    pub percent_traffic: Option<f64>,
    pub stage_variable_overrides: Option<HashMap<String, String>>,
    pub use_stage_cache: Option<bool>,
}

Configuration settings of a canary deployment.

Fields

deployment_id: Option<String>

The ID of the canary deployment.

percent_traffic: Option<f64>

The percent (0-100) of traffic diverted to a canary deployment.

stage_variable_overrides: Option<HashMap<String, String>>

Stage variables overridden for a canary release deployment, including new stage variables introduced in the canary. These stage variables are represented as a string-to-string map between stage variable names and their values.

use_stage_cache: Option<bool>

A Boolean flag to indicate whether the canary deployment uses the stage cache or not.

Trait Implementations

impl Clone for CanarySettings[src]

impl Debug for CanarySettings[src]

impl Default for CanarySettings[src]

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

impl PartialEq<CanarySettings> for CanarySettings[src]

impl Serialize for CanarySettings[src]

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