Struct aws_sdk_codedeploy::types::RollbackInfo
source · #[non_exhaustive]pub struct RollbackInfo { /* private fields */ }
Expand description
Information about a deployment rollback.
Implementations§
source§impl 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).
source§impl RollbackInfo
impl RollbackInfo
sourcepub fn builder() -> RollbackInfoBuilder
pub fn builder() -> RollbackInfoBuilder
Creates a new builder-style object to manufacture RollbackInfo
.
Trait Implementations§
source§impl Clone for RollbackInfo
impl Clone for RollbackInfo
source§fn clone(&self) -> RollbackInfo
fn clone(&self) -> RollbackInfo
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 RollbackInfo
impl Debug for RollbackInfo
source§impl PartialEq<RollbackInfo> for RollbackInfo
impl PartialEq<RollbackInfo> for RollbackInfo
source§fn eq(&self, other: &RollbackInfo) -> bool
fn eq(&self, other: &RollbackInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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§
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