Class DescribeEnvironmentManagedActionHistoryResult
- java.lang.Object
-
- com.amazonaws.services.elasticbeanstalk.model.DescribeEnvironmentManagedActionHistoryResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeEnvironmentManagedActionHistoryResult extends Object implements Serializable, Cloneable
A result message containing a list of completed and failed managed actions.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeEnvironmentManagedActionHistoryResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeEnvironmentManagedActionHistoryResult
clone()
boolean
equals(Object obj)
List<ManagedActionHistoryItem>
getManagedActionHistoryItems()
A list of completed and failed managed actions.String
getNextToken()
A pagination token that you pass to DescribeEnvironmentManagedActionHistory to get the next page of results.int
hashCode()
void
setManagedActionHistoryItems(Collection<ManagedActionHistoryItem> managedActionHistoryItems)
A list of completed and failed managed actions.void
setNextToken(String nextToken)
A pagination token that you pass to DescribeEnvironmentManagedActionHistory to get the next page of results.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeEnvironmentManagedActionHistoryResult
withManagedActionHistoryItems(ManagedActionHistoryItem... managedActionHistoryItems)
A list of completed and failed managed actions.DescribeEnvironmentManagedActionHistoryResult
withManagedActionHistoryItems(Collection<ManagedActionHistoryItem> managedActionHistoryItems)
A list of completed and failed managed actions.DescribeEnvironmentManagedActionHistoryResult
withNextToken(String nextToken)
A pagination token that you pass to DescribeEnvironmentManagedActionHistory to get the next page of results.
-
-
-
Method Detail
-
getManagedActionHistoryItems
public List<ManagedActionHistoryItem> getManagedActionHistoryItems()
A list of completed and failed managed actions.
- Returns:
- A list of completed and failed managed actions.
-
setManagedActionHistoryItems
public void setManagedActionHistoryItems(Collection<ManagedActionHistoryItem> managedActionHistoryItems)
A list of completed and failed managed actions.
- Parameters:
managedActionHistoryItems
- A list of completed and failed managed actions.
-
withManagedActionHistoryItems
public DescribeEnvironmentManagedActionHistoryResult withManagedActionHistoryItems(ManagedActionHistoryItem... managedActionHistoryItems)
A list of completed and failed managed actions.
NOTE: This method appends the values to the existing list (if any). Use
setManagedActionHistoryItems(java.util.Collection)
orwithManagedActionHistoryItems(java.util.Collection)
if you want to override the existing values.- Parameters:
managedActionHistoryItems
- A list of completed and failed managed actions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withManagedActionHistoryItems
public DescribeEnvironmentManagedActionHistoryResult withManagedActionHistoryItems(Collection<ManagedActionHistoryItem> managedActionHistoryItems)
A list of completed and failed managed actions.
- Parameters:
managedActionHistoryItems
- A list of completed and failed managed actions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextToken
public void setNextToken(String nextToken)
A pagination token that you pass to DescribeEnvironmentManagedActionHistory to get the next page of results.
- Parameters:
nextToken
- A pagination token that you pass to DescribeEnvironmentManagedActionHistory to get the next page of results.
-
getNextToken
public String getNextToken()
A pagination token that you pass to DescribeEnvironmentManagedActionHistory to get the next page of results.
- Returns:
- A pagination token that you pass to DescribeEnvironmentManagedActionHistory to get the next page of results.
-
withNextToken
public DescribeEnvironmentManagedActionHistoryResult withNextToken(String nextToken)
A pagination token that you pass to DescribeEnvironmentManagedActionHistory to get the next page of results.
- Parameters:
nextToken
- A pagination token that you pass to DescribeEnvironmentManagedActionHistory to get the next page of results.- 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 DescribeEnvironmentManagedActionHistoryResult clone()
-
-