Class CreateApplicationResult
- java.lang.Object
-
- com.amazonaws.services.elasticbeanstalk.model.CreateApplicationResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class CreateApplicationResult extends Object implements Serializable, Cloneable
Result message containing a single description of an application.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CreateApplicationResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CreateApplicationResult
clone()
boolean
equals(Object obj)
ApplicationDescription
getApplication()
The ApplicationDescription of the application.int
hashCode()
void
setApplication(ApplicationDescription application)
The ApplicationDescription of the application.String
toString()
Returns a string representation of this object; useful for testing and debugging.CreateApplicationResult
withApplication(ApplicationDescription application)
The ApplicationDescription of the application.
-
-
-
Method Detail
-
setApplication
public void setApplication(ApplicationDescription application)
The ApplicationDescription of the application.
- Parameters:
application
- The ApplicationDescription of the application.
-
getApplication
public ApplicationDescription getApplication()
The ApplicationDescription of the application.
- Returns:
- The ApplicationDescription of the application.
-
withApplication
public CreateApplicationResult withApplication(ApplicationDescription application)
The ApplicationDescription of the application.
- Parameters:
application
- The ApplicationDescription of the application.- 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 CreateApplicationResult clone()
-
-