Struct aws_sdk_codedeploy::model::RollbackInfo
source · [−]#[non_exhaustive]pub struct RollbackInfo { /* private fields */ }
Expand description
Information about a deployment rollback.
Implementations
sourceimpl RollbackInfo
impl RollbackInfo
sourcepub fn rollback_deployment_id(&self) -> Option<&str>
pub fn rollback_deployment_id(&self) -> Option<&str>
The ID of the deployment rollback.
sourcepub fn rollback_triggering_deployment_id(&self) -> Option<&str>
pub fn rollback_triggering_deployment_id(&self) -> Option<&str>
The deployment ID of the deployment that was underway and triggered a rollback deployment because it failed or was stopped.
sourcepub fn rollback_message(&self) -> Option<&str>
pub fn rollback_message(&self) -> Option<&str>
Information that describes the status of a deployment rollback (for example, whether the deployment can't be rolled back, is in progress, failed, or succeeded).
sourceimpl RollbackInfo
impl RollbackInfo
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RollbackInfo
.
Trait Implementations
sourceimpl Clone for RollbackInfo
impl Clone for RollbackInfo
sourcefn clone(&self) -> RollbackInfo
fn clone(&self) -> RollbackInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for RollbackInfo
impl Debug for RollbackInfo
sourceimpl PartialEq<RollbackInfo> for RollbackInfo
impl PartialEq<RollbackInfo> for RollbackInfo
sourcefn eq(&self, other: &RollbackInfo) -> bool
fn eq(&self, other: &RollbackInfo) -> bool
impl StructuralPartialEq for RollbackInfo
Auto Trait Implementations
impl RefUnwindSafe for RollbackInfo
impl Send for RollbackInfo
impl Sync for RollbackInfo
impl Unpin for RollbackInfo
impl UnwindSafe for RollbackInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more