Class GetDeploymentGroupResult
- java.lang.Object
-
- com.amazonaws.services.codedeploy.model.GetDeploymentGroupResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class GetDeploymentGroupResult extends Object implements Serializable, Cloneable
Represents the output of a get deployment group operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GetDeploymentGroupResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetDeploymentGroupResultclone()booleanequals(Object obj)DeploymentGroupInfogetDeploymentGroupInfo()Information about the deployment group.inthashCode()voidsetDeploymentGroupInfo(DeploymentGroupInfo deploymentGroupInfo)Information about the deployment group.StringtoString()Returns a string representation of this object; useful for testing and debugging.GetDeploymentGroupResultwithDeploymentGroupInfo(DeploymentGroupInfo deploymentGroupInfo)Information about the deployment group.
-
-
-
Method Detail
-
setDeploymentGroupInfo
public void setDeploymentGroupInfo(DeploymentGroupInfo deploymentGroupInfo)
Information about the deployment group.
- Parameters:
deploymentGroupInfo- Information about the deployment group.
-
getDeploymentGroupInfo
public DeploymentGroupInfo getDeploymentGroupInfo()
Information about the deployment group.
- Returns:
- Information about the deployment group.
-
withDeploymentGroupInfo
public GetDeploymentGroupResult withDeploymentGroupInfo(DeploymentGroupInfo deploymentGroupInfo)
Information about the deployment group.
- Parameters:
deploymentGroupInfo- Information about the deployment group.- 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 GetDeploymentGroupResult clone()
-
-