Class GetApplicationResult
- java.lang.Object
-
- com.amazonaws.services.codedeploy.model.GetApplicationResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class GetApplicationResult extends Object implements Serializable, Cloneable
Represents the output of a get application operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GetApplicationResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetApplicationResultclone()booleanequals(Object obj)ApplicationInfogetApplication()Information about the application.inthashCode()voidsetApplication(ApplicationInfo application)Information about the application.StringtoString()Returns a string representation of this object; useful for testing and debugging.GetApplicationResultwithApplication(ApplicationInfo application)Information about the application.
-
-
-
Method Detail
-
setApplication
public void setApplication(ApplicationInfo application)
Information about the application.
- Parameters:
application- Information about the application.
-
getApplication
public ApplicationInfo getApplication()
Information about the application.
- Returns:
- Information about the application.
-
withApplication
public GetApplicationResult withApplication(ApplicationInfo application)
Information about the application.
- Parameters:
application- Information about 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public GetApplicationResult clone()
-
-