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 LaunchConfiguration
clone()
boolean
equals(Object obj)
String
getName()
The name of the launch configuration.int
hashCode()
void
setName(String name)
The name of the launch configuration.String
toString()
Returns a string representation of this object; useful for testing and debugging.LaunchConfiguration
withName(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public LaunchConfiguration clone()
-
-