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 GetDeploymentConfigResultclone()booleanequals(Object obj)DeploymentConfigInfogetDeploymentConfigInfo()Information about the deployment configuration.inthashCode()voidsetDeploymentConfigInfo(DeploymentConfigInfo deploymentConfigInfo)Information about the deployment configuration.StringtoString()Returns a string representation of this object; useful for testing and debugging.GetDeploymentConfigResultwithDeploymentConfigInfo(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public GetDeploymentConfigResult clone()
-
-