Class DeploymentOverview
- java.lang.Object
-
- com.amazonaws.services.codedeploy.model.DeploymentOverview
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DeploymentOverview extends Object implements Serializable, Cloneable
Information about the deployment status of the instances in the deployment.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeploymentOverview()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeploymentOverviewclone()booleanequals(Object obj)LonggetFailed()The number of instances in the deployment in a failed state.LonggetInProgress()The number of instances in which the deployment is in progress.LonggetPending()The number of instances in the deployment in a pending state.LonggetSkipped()The number of instances in the deployment in a skipped state.LonggetSucceeded()The number of instances in the deployment to which revisions have been successfully deployed.inthashCode()voidsetFailed(Long failed)The number of instances in the deployment in a failed state.voidsetInProgress(Long inProgress)The number of instances in which the deployment is in progress.voidsetPending(Long pending)The number of instances in the deployment in a pending state.voidsetSkipped(Long skipped)The number of instances in the deployment in a skipped state.voidsetSucceeded(Long succeeded)The number of instances in the deployment to which revisions have been successfully deployed.StringtoString()Returns a string representation of this object; useful for testing and debugging.DeploymentOverviewwithFailed(Long failed)The number of instances in the deployment in a failed state.DeploymentOverviewwithInProgress(Long inProgress)The number of instances in which the deployment is in progress.DeploymentOverviewwithPending(Long pending)The number of instances in the deployment in a pending state.DeploymentOverviewwithSkipped(Long skipped)The number of instances in the deployment in a skipped state.DeploymentOverviewwithSucceeded(Long succeeded)The number of instances in the deployment to which revisions have been successfully deployed.
-
-
-
Method Detail
-
setPending
public void setPending(Long pending)
The number of instances in the deployment in a pending state.
- Parameters:
pending- The number of instances in the deployment in a pending state.
-
getPending
public Long getPending()
The number of instances in the deployment in a pending state.
- Returns:
- The number of instances in the deployment in a pending state.
-
withPending
public DeploymentOverview withPending(Long pending)
The number of instances in the deployment in a pending state.
- Parameters:
pending- The number of instances in the deployment in a pending state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setInProgress
public void setInProgress(Long inProgress)
The number of instances in which the deployment is in progress.
- Parameters:
inProgress- The number of instances in which the deployment is in progress.
-
getInProgress
public Long getInProgress()
The number of instances in which the deployment is in progress.
- Returns:
- The number of instances in which the deployment is in progress.
-
withInProgress
public DeploymentOverview withInProgress(Long inProgress)
The number of instances in which the deployment is in progress.
- Parameters:
inProgress- The number of instances in which the deployment is in progress.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setSucceeded
public void setSucceeded(Long succeeded)
The number of instances in the deployment to which revisions have been successfully deployed.
- Parameters:
succeeded- The number of instances in the deployment to which revisions have been successfully deployed.
-
getSucceeded
public Long getSucceeded()
The number of instances in the deployment to which revisions have been successfully deployed.
- Returns:
- The number of instances in the deployment to which revisions have been successfully deployed.
-
withSucceeded
public DeploymentOverview withSucceeded(Long succeeded)
The number of instances in the deployment to which revisions have been successfully deployed.
- Parameters:
succeeded- The number of instances in the deployment to which revisions have been successfully deployed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setFailed
public void setFailed(Long failed)
The number of instances in the deployment in a failed state.
- Parameters:
failed- The number of instances in the deployment in a failed state.
-
getFailed
public Long getFailed()
The number of instances in the deployment in a failed state.
- Returns:
- The number of instances in the deployment in a failed state.
-
withFailed
public DeploymentOverview withFailed(Long failed)
The number of instances in the deployment in a failed state.
- Parameters:
failed- The number of instances in the deployment in a failed state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setSkipped
public void setSkipped(Long skipped)
The number of instances in the deployment in a skipped state.
- Parameters:
skipped- The number of instances in the deployment in a skipped state.
-
getSkipped
public Long getSkipped()
The number of instances in the deployment in a skipped state.
- Returns:
- The number of instances in the deployment in a skipped state.
-
withSkipped
public DeploymentOverview withSkipped(Long skipped)
The number of instances in the deployment in a skipped state.
- Parameters:
skipped- The number of instances in the deployment in a skipped state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DeploymentOverview clone()
-
-