Class DeploymentConfigInfo
- java.lang.Object
-
- com.amazonaws.services.codedeploy.model.DeploymentConfigInfo
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DeploymentConfigInfo extends Object implements Serializable, Cloneable
Information about a deployment configuration.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeploymentConfigInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeploymentConfigInfoclone()booleanequals(Object obj)DategetCreateTime()The time at which the deployment configuration was created.StringgetDeploymentConfigId()The deployment configuration ID.StringgetDeploymentConfigName()The deployment configuration name.MinimumHealthyHostsgetMinimumHealthyHosts()Information about the number or percentage of minimum healthy instance.inthashCode()voidsetCreateTime(Date createTime)The time at which the deployment configuration was created.voidsetDeploymentConfigId(String deploymentConfigId)The deployment configuration ID.voidsetDeploymentConfigName(String deploymentConfigName)The deployment configuration name.voidsetMinimumHealthyHosts(MinimumHealthyHosts minimumHealthyHosts)Information about the number or percentage of minimum healthy instance.StringtoString()Returns a string representation of this object; useful for testing and debugging.DeploymentConfigInfowithCreateTime(Date createTime)The time at which the deployment configuration was created.DeploymentConfigInfowithDeploymentConfigId(String deploymentConfigId)The deployment configuration ID.DeploymentConfigInfowithDeploymentConfigName(String deploymentConfigName)The deployment configuration name.DeploymentConfigInfowithMinimumHealthyHosts(MinimumHealthyHosts minimumHealthyHosts)Information about the number or percentage of minimum healthy instance.
-
-
-
Method Detail
-
setDeploymentConfigId
public void setDeploymentConfigId(String deploymentConfigId)
The deployment configuration ID.
- Parameters:
deploymentConfigId- The deployment configuration ID.
-
getDeploymentConfigId
public String getDeploymentConfigId()
The deployment configuration ID.
- Returns:
- The deployment configuration ID.
-
withDeploymentConfigId
public DeploymentConfigInfo withDeploymentConfigId(String deploymentConfigId)
The deployment configuration ID.
- Parameters:
deploymentConfigId- The deployment configuration ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setDeploymentConfigName
public void setDeploymentConfigName(String deploymentConfigName)
The deployment configuration name.
- Parameters:
deploymentConfigName- The deployment configuration name.
-
getDeploymentConfigName
public String getDeploymentConfigName()
The deployment configuration name.
- Returns:
- The deployment configuration name.
-
withDeploymentConfigName
public DeploymentConfigInfo withDeploymentConfigName(String deploymentConfigName)
The deployment configuration name.
- Parameters:
deploymentConfigName- The deployment configuration name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setMinimumHealthyHosts
public void setMinimumHealthyHosts(MinimumHealthyHosts minimumHealthyHosts)
Information about the number or percentage of minimum healthy instance.
- Parameters:
minimumHealthyHosts- Information about the number or percentage of minimum healthy instance.
-
getMinimumHealthyHosts
public MinimumHealthyHosts getMinimumHealthyHosts()
Information about the number or percentage of minimum healthy instance.
- Returns:
- Information about the number or percentage of minimum healthy instance.
-
withMinimumHealthyHosts
public DeploymentConfigInfo withMinimumHealthyHosts(MinimumHealthyHosts minimumHealthyHosts)
Information about the number or percentage of minimum healthy instance.
- Parameters:
minimumHealthyHosts- Information about the number or percentage of minimum healthy instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setCreateTime
public void setCreateTime(Date createTime)
The time at which the deployment configuration was created.
- Parameters:
createTime- The time at which the deployment configuration was created.
-
getCreateTime
public Date getCreateTime()
The time at which the deployment configuration was created.
- Returns:
- The time at which the deployment configuration was created.
-
withCreateTime
public DeploymentConfigInfo withCreateTime(Date createTime)
The time at which the deployment configuration was created.
- Parameters:
createTime- The time at which the deployment configuration was created.- 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 DeploymentConfigInfo clone()
-
-