Struct rusoto_lambda::AliasRoutingConfiguration[][src]

pub struct AliasRoutingConfiguration {
    pub additional_version_weights: Option<HashMap<String, f64>>,
}

The parent object that implements what percentage of traffic will invoke each function version. For more information, see lambda-traffic-shifting-using-aliases.

Fields

Set this value to dictate what percentage of traffic will invoke the updated function version. If set to an empty string, 100 percent of traffic will invoke function-version. For more information, see lambda-traffic-shifting-using-aliases.

Trait Implementations

impl Default for AliasRoutingConfiguration
[src]

Returns the "default value" for a type. Read more

impl Debug for AliasRoutingConfiguration
[src]

Formats the value using the given formatter. Read more

impl Clone for AliasRoutingConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AliasRoutingConfiguration
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations