Class LaunchConfiguration
- java.lang.Object
-
- com.amazonaws.services.elasticbeanstalk.model.LaunchConfiguration
-
- All Implemented Interfaces:
Serializable,Cloneable
public class LaunchConfiguration extends Object implements Serializable, Cloneable
Describes an Auto Scaling launch configuration.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LaunchConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LaunchConfigurationclone()booleanequals(Object obj)StringgetName()The name of the launch configuration.inthashCode()voidsetName(String name)The name of the launch configuration.StringtoString()Returns a string representation of this object; useful for testing and debugging.LaunchConfigurationwithName(String name)The name of the launch configuration.
-
-
-
Method Detail
-
setName
public void setName(String name)
The name of the launch configuration.
- Parameters:
name- The name of the launch configuration.
-
getName
public String getName()
The name of the launch configuration.
- Returns:
- The name of the launch configuration.
-
withName
public LaunchConfiguration withName(String name)
The name of the launch configuration.
- Parameters:
name- The name of the launch 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 LaunchConfiguration clone()
-
-