Struct aws_sdk_codedeploy::model::LifecycleEvent [−][src]
#[non_exhaustive]pub struct LifecycleEvent {
pub lifecycle_event_name: Option<String>,
pub diagnostics: Option<Diagnostics>,
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub status: Option<LifecycleEventStatus>,
}
Expand description
Information about a deployment lifecycle event.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.lifecycle_event_name: Option<String>
The deployment lifecycle event name, such as ApplicationStop
,
BeforeInstall
, AfterInstall
,
ApplicationStart
, or ValidateService
.
diagnostics: Option<Diagnostics>
Diagnostic information about the deployment lifecycle event.
start_time: Option<DateTime>
A timestamp that indicates when the deployment lifecycle event started.
end_time: Option<DateTime>
A timestamp that indicates when the deployment lifecycle event ended.
status: Option<LifecycleEventStatus>
The deployment lifecycle event status:
-
Pending: The deployment lifecycle event is pending.
-
InProgress: The deployment lifecycle event is in progress.
-
Succeeded: The deployment lifecycle event ran successfully.
-
Failed: The deployment lifecycle event has failed.
-
Skipped: The deployment lifecycle event has been skipped.
-
Unknown: The deployment lifecycle event is unknown.
Implementations
The deployment lifecycle event name, such as ApplicationStop
,
BeforeInstall
, AfterInstall
,
ApplicationStart
, or ValidateService
.
Diagnostic information about the deployment lifecycle event.
A timestamp that indicates when the deployment lifecycle event started.
A timestamp that indicates when the deployment lifecycle event ended.
The deployment lifecycle event status:
-
Pending: The deployment lifecycle event is pending.
-
InProgress: The deployment lifecycle event is in progress.
-
Succeeded: The deployment lifecycle event ran successfully.
-
Failed: The deployment lifecycle event has failed.
-
Skipped: The deployment lifecycle event has been skipped.
-
Unknown: The deployment lifecycle event is unknown.
Creates a new builder-style object to manufacture LifecycleEvent
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for LifecycleEvent
impl Send for LifecycleEvent
impl Sync for LifecycleEvent
impl Unpin for LifecycleEvent
impl UnwindSafe for LifecycleEvent
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more