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 get_rollback_deployment_id(&self) -> &Option<String>
pub fn get_rollback_deployment_id(&self) -> &Option<String>
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 get_rollback_triggering_deployment_id(&self) -> &Option<String>
pub fn get_rollback_triggering_deployment_id(&self) -> &Option<String>
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 get_rollback_message(&self) -> &Option<String>
pub fn get_rollback_message(&self) -> &Option<String>
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
source§impl PartialEq for RollbackInfoBuilder
impl PartialEq for RollbackInfoBuilder
source§fn eq(&self, other: &RollbackInfoBuilder) -> bool
fn eq(&self, other: &RollbackInfoBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RollbackInfoBuilder
Auto Trait Implementations§
impl Freeze for RollbackInfoBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more