[][src]Struct rusoto_codedeploy::LambdaTarget

pub struct LambdaTarget {
    pub deployment_id: Option<String>,
    pub lambda_function_info: Option<LambdaFunctionInfo>,
    pub last_updated_at: Option<f64>,
    pub lifecycle_events: Option<Vec<LifecycleEvent>>,
    pub status: Option<String>,
    pub target_arn: Option<String>,
    pub target_id: Option<String>,
}

Information about the target AWS Lambda function during an AWS Lambda deployment.

Fields

deployment_id: Option<String>

The unique ID of a deployment.

lambda_function_info: Option<LambdaFunctionInfo>

A LambdaFunctionInfo object that describes a target Lambda function.

last_updated_at: Option<f64>

The date and time when the target Lambda function was updated by a deployment.

lifecycle_events: Option<Vec<LifecycleEvent>>

The lifecycle events of the deployment to this target Lambda function.

status: Option<String>

The status an AWS Lambda deployment's target Lambda function.

target_arn: Option<String>

The Amazon Resource Name (ARN) of the target.

target_id: Option<String>

The unique ID of a deployment target that has a type of lambdaTarget.

Trait Implementations

impl Clone for LambdaTarget[src]

impl Debug for LambdaTarget[src]

impl Default for LambdaTarget[src]

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

impl PartialEq<LambdaTarget> for LambdaTarget[src]

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