Class GetDeploymentConfigResult
- java.lang.Object
-
- com.amazonaws.services.codedeploy.model.GetDeploymentConfigResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class GetDeploymentConfigResult extends Object implements Serializable, Cloneable
Represents the output of a get deployment configuration operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GetDeploymentConfigResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetDeploymentConfigResult
clone()
boolean
equals(Object obj)
DeploymentConfigInfo
getDeploymentConfigInfo()
Information about the deployment configuration.int
hashCode()
void
setDeploymentConfigInfo(DeploymentConfigInfo deploymentConfigInfo)
Information about the deployment configuration.String
toString()
Returns a string representation of this object; useful for testing and debugging.GetDeploymentConfigResult
withDeploymentConfigInfo(DeploymentConfigInfo deploymentConfigInfo)
Information about the deployment configuration.
-
-
-
Method Detail
-
setDeploymentConfigInfo
public void setDeploymentConfigInfo(DeploymentConfigInfo deploymentConfigInfo)
Information about the deployment configuration.
- Parameters:
deploymentConfigInfo
- Information about the deployment configuration.
-
getDeploymentConfigInfo
public DeploymentConfigInfo getDeploymentConfigInfo()
Information about the deployment configuration.
- Returns:
- Information about the deployment configuration.
-
withDeploymentConfigInfo
public GetDeploymentConfigResult withDeploymentConfigInfo(DeploymentConfigInfo deploymentConfigInfo)
Information about the deployment configuration.
- Parameters:
deploymentConfigInfo
- Information about the deployment configuration.- 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 GetDeploymentConfigResult clone()
-
-