[][src]Struct rusoto_codedeploy::LambdaFunctionInfo

pub struct LambdaFunctionInfo {
    pub current_version: Option<String>,
    pub function_alias: Option<String>,
    pub function_name: Option<String>,
    pub target_version: Option<String>,
    pub target_version_weight: Option<f64>,
}

Information about a Lambda function specified in a deployment.

Fields

current_version: Option<String>

The version of a Lambda function that production traffic points to.

function_alias: Option<String>

The alias of a Lambda function. For more information, see AWS Lambda Function Aliases in the AWS Lambda Developer Guide.

function_name: Option<String>

The name of a Lambda function.

target_version: Option<String>

The version of a Lambda function that production traffic points to after the Lambda function is deployed.

target_version_weight: Option<f64>

The percentage of production traffic that the target version of a Lambda function receives.

Trait Implementations

impl Clone for LambdaFunctionInfo[src]

impl Debug for LambdaFunctionInfo[src]

impl Default for LambdaFunctionInfo[src]

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

impl PartialEq<LambdaFunctionInfo> for LambdaFunctionInfo[src]

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