pub struct PutLifecycleEventHookExecutionStatusInput {
pub deployment_id: Option<String>,
pub lifecycle_event_hook_execution_id: Option<String>,
pub status: Option<String>,
}
Fields§
§deployment_id: Option<String>
The unique ID of a deployment. Pass this ID to a Lambda function that validates a deployment lifecycle event.
lifecycle_event_hook_execution_id: Option<String>
The execution ID of a deployment's lifecycle hook. A deployment lifecycle hook is specified in the hooks
section of the AppSpec file.
status: Option<String>
The result of a Lambda function that validates a deployment lifecycle event (Succeeded
or Failed
).
Trait Implementations§
Source§impl Clone for PutLifecycleEventHookExecutionStatusInput
impl Clone for PutLifecycleEventHookExecutionStatusInput
Source§fn clone(&self) -> PutLifecycleEventHookExecutionStatusInput
fn clone(&self) -> PutLifecycleEventHookExecutionStatusInput
Returns a duplicate 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 Default for PutLifecycleEventHookExecutionStatusInput
impl Default for PutLifecycleEventHookExecutionStatusInput
Source§fn default() -> PutLifecycleEventHookExecutionStatusInput
fn default() -> PutLifecycleEventHookExecutionStatusInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutLifecycleEventHookExecutionStatusInput
impl PartialEq for PutLifecycleEventHookExecutionStatusInput
Source§fn eq(&self, other: &PutLifecycleEventHookExecutionStatusInput) -> bool
fn eq(&self, other: &PutLifecycleEventHookExecutionStatusInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PutLifecycleEventHookExecutionStatusInput
Auto Trait Implementations§
impl Freeze for PutLifecycleEventHookExecutionStatusInput
impl RefUnwindSafe for PutLifecycleEventHookExecutionStatusInput
impl Send for PutLifecycleEventHookExecutionStatusInput
impl Sync for PutLifecycleEventHookExecutionStatusInput
impl Unpin for PutLifecycleEventHookExecutionStatusInput
impl UnwindSafe for PutLifecycleEventHookExecutionStatusInput
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