Class UpdateApplicationResult
- java.lang.Object
-
- com.amazonaws.services.elasticbeanstalk.model.UpdateApplicationResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class UpdateApplicationResult extends Object implements Serializable, Cloneable
Result message containing a single description of an application.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UpdateApplicationResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UpdateApplicationResult
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.UpdateApplicationResult
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 UpdateApplicationResult 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 UpdateApplicationResult clone()
-
-