Struct aws_sdk_codedeploy::types::builders::RollbackInfoBuilder
source · #[non_exhaustive]pub struct RollbackInfoBuilder { /* private fields */ }
Expand description
A builder for RollbackInfo
.
Implementations§
source§impl RollbackInfoBuilder
impl RollbackInfoBuilder
sourcepub fn rollback_deployment_id(self, input: impl Into<String>) -> Self
pub fn rollback_deployment_id(self, input: impl Into<String>) -> Self
The ID of the deployment rollback.
sourcepub fn set_rollback_deployment_id(self, input: Option<String>) -> Self
pub fn set_rollback_deployment_id(self, input: Option<String>) -> Self
The ID of the deployment rollback.
sourcepub fn rollback_triggering_deployment_id(self, input: impl Into<String>) -> Self
pub fn rollback_triggering_deployment_id(self, input: impl Into<String>) -> Self
The deployment ID of the deployment that was underway and triggered a rollback deployment because it failed or was stopped.
sourcepub fn set_rollback_triggering_deployment_id(
self,
input: Option<String>
) -> Self
pub fn set_rollback_triggering_deployment_id( self, input: Option<String> ) -> Self
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, input: impl Into<String>) -> Self
pub fn rollback_message(self, input: impl Into<String>) -> Self
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).
sourcepub fn set_rollback_message(self, input: Option<String>) -> Self
pub fn set_rollback_message(self, input: Option<String>) -> Self
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).
sourcepub fn build(self) -> RollbackInfo
pub fn build(self) -> RollbackInfo
Consumes the builder and constructs a RollbackInfo
.
Trait Implementations§
source§impl Clone for RollbackInfoBuilder
impl Clone for RollbackInfoBuilder
source§fn clone(&self) -> RollbackInfoBuilder
fn clone(&self) -> RollbackInfoBuilder
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 RollbackInfoBuilder
impl Debug for RollbackInfoBuilder
source§impl Default for RollbackInfoBuilder
impl Default for RollbackInfoBuilder
source§fn default() -> RollbackInfoBuilder
fn default() -> RollbackInfoBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<RollbackInfoBuilder> for RollbackInfoBuilder
impl PartialEq<RollbackInfoBuilder> for RollbackInfoBuilder
source§fn eq(&self, other: &RollbackInfoBuilder) -> bool
fn eq(&self, other: &RollbackInfoBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RollbackInfoBuilder
Auto Trait Implementations§
impl RefUnwindSafe for RollbackInfoBuilder
impl Send for RollbackInfoBuilder
impl Sync for RollbackInfoBuilder
impl Unpin for RollbackInfoBuilder
impl UnwindSafe for RollbackInfoBuilder
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