Class GetDeploymentResult
- java.lang.Object
-
- com.amazonaws.services.codedeploy.model.GetDeploymentResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class GetDeploymentResult extends Object implements Serializable, Cloneable
Represents the output of a get deployment operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GetDeploymentResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetDeploymentResultclone()booleanequals(Object obj)DeploymentInfogetDeploymentInfo()Information about the deployment.inthashCode()voidsetDeploymentInfo(DeploymentInfo deploymentInfo)Information about the deployment.StringtoString()Returns a string representation of this object; useful for testing and debugging.GetDeploymentResultwithDeploymentInfo(DeploymentInfo deploymentInfo)Information about the deployment.
-
-
-
Method Detail
-
setDeploymentInfo
public void setDeploymentInfo(DeploymentInfo deploymentInfo)
Information about the deployment.
- Parameters:
deploymentInfo- Information about the deployment.
-
getDeploymentInfo
public DeploymentInfo getDeploymentInfo()
Information about the deployment.
- Returns:
- Information about the deployment.
-
withDeploymentInfo
public GetDeploymentResult withDeploymentInfo(DeploymentInfo deploymentInfo)
Information about the deployment.
- Parameters:
deploymentInfo- Information about the deployment.- 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 GetDeploymentResult clone()
-
-