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 DescribeEnvironmentManagedActionHistoryResultclone()booleanequals(Object obj)List<ManagedActionHistoryItem>getManagedActionHistoryItems()A list of completed and failed managed actions.StringgetNextToken()A pagination token that you pass to DescribeEnvironmentManagedActionHistory to get the next page of results.inthashCode()voidsetManagedActionHistoryItems(Collection<ManagedActionHistoryItem> managedActionHistoryItems)A list of completed and failed managed actions.voidsetNextToken(String nextToken)A pagination token that you pass to DescribeEnvironmentManagedActionHistory to get the next page of results.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeEnvironmentManagedActionHistoryResultwithManagedActionHistoryItems(ManagedActionHistoryItem... managedActionHistoryItems)A list of completed and failed managed actions.DescribeEnvironmentManagedActionHistoryResultwithManagedActionHistoryItems(Collection<ManagedActionHistoryItem> managedActionHistoryItems)A list of completed and failed managed actions.DescribeEnvironmentManagedActionHistoryResultwithNextToken(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeEnvironmentManagedActionHistoryResult clone()
-
-