Struct aws_sdk_codedeploy::model::rollback_info::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for RollbackInfo
.
Implementations§
source§impl Builder
impl Builder
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
.