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 ==
.