public class ListStepsResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
This output contains the list of steps returned in reverse order. This means that the last step is the first element in the list.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
marker
The pagination token that indicates the next set of results to retrieve.
|
private SdkInternalList<StepSummary> |
steps
The filtered list of steps for the cluster.
|
Constructor and Description |
---|
ListStepsResult() |
Modifier and Type | Method and Description |
---|---|
ListStepsResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getMarker()
The pagination token that indicates the next set of results to retrieve.
|
java.util.List<StepSummary> |
getSteps()
The filtered list of steps for the cluster.
|
int |
hashCode() |
void |
setMarker(java.lang.String marker)
The pagination token that indicates the next set of results to retrieve.
|
void |
setSteps(java.util.Collection<StepSummary> steps)
The filtered list of steps for the cluster.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListStepsResult |
withMarker(java.lang.String marker)
The pagination token that indicates the next set of results to retrieve.
|
ListStepsResult |
withSteps(java.util.Collection<StepSummary> steps)
The filtered list of steps for the cluster.
|
ListStepsResult |
withSteps(StepSummary... steps)
The filtered list of steps for the cluster.
|
private SdkInternalList<StepSummary> steps
The filtered list of steps for the cluster.
private java.lang.String marker
The pagination token that indicates the next set of results to retrieve.
public java.util.List<StepSummary> getSteps()
The filtered list of steps for the cluster.
public void setSteps(java.util.Collection<StepSummary> steps)
The filtered list of steps for the cluster.
steps
- The filtered list of steps for the cluster.public ListStepsResult withSteps(StepSummary... steps)
The filtered list of steps for the cluster.
NOTE: This method appends the values to the existing list (if
any). Use setSteps(java.util.Collection)
or
withSteps(java.util.Collection)
if you want to override the
existing values.
steps
- The filtered list of steps for the cluster.public ListStepsResult withSteps(java.util.Collection<StepSummary> steps)
The filtered list of steps for the cluster.
steps
- The filtered list of steps for the cluster.public void setMarker(java.lang.String marker)
The pagination token that indicates the next set of results to retrieve.
marker
- The pagination token that indicates the next set of results to
retrieve.public java.lang.String getMarker()
The pagination token that indicates the next set of results to retrieve.
public ListStepsResult withMarker(java.lang.String marker)
The pagination token that indicates the next set of results to retrieve.
marker
- The pagination token that indicates the next set of results to
retrieve.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public ListStepsResult clone()
clone
in class java.lang.Object