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>,
}
Expand description
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§
Source§impl Clone for LambdaTarget
impl Clone for LambdaTarget
Source§fn clone(&self) -> LambdaTarget
fn clone(&self) -> LambdaTarget
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LambdaTarget
impl Debug for LambdaTarget
Source§impl Default for LambdaTarget
impl Default for LambdaTarget
Source§fn default() -> LambdaTarget
fn default() -> LambdaTarget
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LambdaTarget
impl<'de> Deserialize<'de> for LambdaTarget
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LambdaTarget
impl PartialEq for LambdaTarget
impl StructuralPartialEq for LambdaTarget
Auto Trait Implementations§
impl Freeze for LambdaTarget
impl RefUnwindSafe for LambdaTarget
impl Send for LambdaTarget
impl Sync for LambdaTarget
impl Unpin for LambdaTarget
impl UnwindSafe for LambdaTarget
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more