Interface RollbackInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RollbackInfo.Builder,RollbackInfo>,SdkBuilder<RollbackInfo.Builder,RollbackInfo>,SdkPojo
- Enclosing class:
- RollbackInfo
public static interface RollbackInfo.Builder extends SdkPojo, CopyableBuilder<RollbackInfo.Builder,RollbackInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RollbackInfo.BuilderrollbackDeploymentId(String rollbackDeploymentId)The ID of the deployment rollback.RollbackInfo.BuilderrollbackMessage(String rollbackMessage)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).RollbackInfo.BuilderrollbackTriggeringDeploymentId(String rollbackTriggeringDeploymentId)The deployment ID of the deployment that was underway and triggered a rollback deployment because it failed or was stopped.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
rollbackDeploymentId
RollbackInfo.Builder rollbackDeploymentId(String rollbackDeploymentId)
The ID of the deployment rollback.
- Parameters:
rollbackDeploymentId- The ID of the deployment rollback.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rollbackTriggeringDeploymentId
RollbackInfo.Builder rollbackTriggeringDeploymentId(String rollbackTriggeringDeploymentId)
The deployment ID of the deployment that was underway and triggered a rollback deployment because it failed or was stopped.
- Parameters:
rollbackTriggeringDeploymentId- The deployment ID of the deployment that was underway and triggered a rollback deployment because it failed or was stopped.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rollbackMessage
RollbackInfo.Builder rollbackMessage(String rollbackMessage)
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).
- Parameters:
rollbackMessage- 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).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-