Class ApplyEnvironmentManagedActionResult
- java.lang.Object
-
- com.amazonaws.services.elasticbeanstalk.model.ApplyEnvironmentManagedActionResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ApplyEnvironmentManagedActionResult extends Object implements Serializable, Cloneable
The result message containing information about the managed action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ApplyEnvironmentManagedActionResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ApplyEnvironmentManagedActionResult
clone()
boolean
equals(Object obj)
String
getActionDescription()
A description of the managed action.String
getActionId()
The action ID of the managed action.String
getActionType()
The type of managed action.String
getStatus()
The status of the managed action.int
hashCode()
void
setActionDescription(String actionDescription)
A description of the managed action.void
setActionId(String actionId)
The action ID of the managed action.void
setActionType(ActionType actionType)
The type of managed action.void
setActionType(String actionType)
The type of managed action.void
setStatus(String status)
The status of the managed action.String
toString()
Returns a string representation of this object; useful for testing and debugging.ApplyEnvironmentManagedActionResult
withActionDescription(String actionDescription)
A description of the managed action.ApplyEnvironmentManagedActionResult
withActionId(String actionId)
The action ID of the managed action.ApplyEnvironmentManagedActionResult
withActionType(ActionType actionType)
The type of managed action.ApplyEnvironmentManagedActionResult
withActionType(String actionType)
The type of managed action.ApplyEnvironmentManagedActionResult
withStatus(String status)
The status of the managed action.
-
-
-
Method Detail
-
setActionId
public void setActionId(String actionId)
The action ID of the managed action.
- Parameters:
actionId
- The action ID of the managed action.
-
getActionId
public String getActionId()
The action ID of the managed action.
- Returns:
- The action ID of the managed action.
-
withActionId
public ApplyEnvironmentManagedActionResult withActionId(String actionId)
The action ID of the managed action.
- Parameters:
actionId
- The action ID of the managed action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setActionDescription
public void setActionDescription(String actionDescription)
A description of the managed action.
- Parameters:
actionDescription
- A description of the managed action.
-
getActionDescription
public String getActionDescription()
A description of the managed action.
- Returns:
- A description of the managed action.
-
withActionDescription
public ApplyEnvironmentManagedActionResult withActionDescription(String actionDescription)
A description of the managed action.
- Parameters:
actionDescription
- A description of the managed action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setActionType
public void setActionType(String actionType)
The type of managed action.
- Parameters:
actionType
- The type of managed action.- See Also:
ActionType
-
getActionType
public String getActionType()
The type of managed action.
- Returns:
- The type of managed action.
- See Also:
ActionType
-
withActionType
public ApplyEnvironmentManagedActionResult withActionType(String actionType)
The type of managed action.
- Parameters:
actionType
- The type of managed action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionType
-
setActionType
public void setActionType(ActionType actionType)
The type of managed action.
- Parameters:
actionType
- The type of managed action.- See Also:
ActionType
-
withActionType
public ApplyEnvironmentManagedActionResult withActionType(ActionType actionType)
The type of managed action.
- Parameters:
actionType
- The type of managed action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionType
-
setStatus
public void setStatus(String status)
The status of the managed action.
- Parameters:
status
- The status of the managed action.
-
getStatus
public String getStatus()
The status of the managed action.
- Returns:
- The status of the managed action.
-
withStatus
public ApplyEnvironmentManagedActionResult withStatus(String status)
The status of the managed action.
- Parameters:
status
- The status of the managed action.- 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 ApplyEnvironmentManagedActionResult clone()
-
-