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 GetDeploymentGroupResult
clone()
boolean
equals(Object obj)
DeploymentGroupInfo
getDeploymentGroupInfo()
Information about the deployment group.int
hashCode()
void
setDeploymentGroupInfo(DeploymentGroupInfo deploymentGroupInfo)
Information about the deployment group.String
toString()
Returns a string representation of this object; useful for testing and debugging.GetDeploymentGroupResult
withDeploymentGroupInfo(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public GetDeploymentGroupResult clone()
-
-