public class ListPipelinesResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Represents the output of a list pipelines action.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
nextToken
If the amount of returned information is significantly large, an
identifier is also returned which can be used in a subsequent list
pipelines call to return the next set of pipelines in the list.
|
private java.util.List<PipelineSummary> |
pipelines
The list of pipelines.
|
Constructor and Description |
---|
ListPipelinesResult() |
Modifier and Type | Method and Description |
---|---|
ListPipelinesResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getNextToken()
If the amount of returned information is significantly large, an
identifier is also returned which can be used in a subsequent list
pipelines call to return the next set of pipelines in the list.
|
java.util.List<PipelineSummary> |
getPipelines()
The list of pipelines.
|
int |
hashCode() |
void |
setNextToken(java.lang.String nextToken)
If the amount of returned information is significantly large, an
identifier is also returned which can be used in a subsequent list
pipelines call to return the next set of pipelines in the list.
|
void |
setPipelines(java.util.Collection<PipelineSummary> pipelines)
The list of pipelines.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListPipelinesResult |
withNextToken(java.lang.String nextToken)
If the amount of returned information is significantly large, an
identifier is also returned which can be used in a subsequent list
pipelines call to return the next set of pipelines in the list.
|
ListPipelinesResult |
withPipelines(java.util.Collection<PipelineSummary> pipelines)
The list of pipelines.
|
ListPipelinesResult |
withPipelines(PipelineSummary... pipelines)
The list of pipelines.
|
private java.util.List<PipelineSummary> pipelines
The list of pipelines.
private java.lang.String nextToken
If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
public java.util.List<PipelineSummary> getPipelines()
The list of pipelines.
public void setPipelines(java.util.Collection<PipelineSummary> pipelines)
The list of pipelines.
pipelines
- The list of pipelines.public ListPipelinesResult withPipelines(PipelineSummary... pipelines)
The list of pipelines.
NOTE: This method appends the values to the existing list (if
any). Use setPipelines(java.util.Collection)
or
withPipelines(java.util.Collection)
if you want to override the
existing values.
pipelines
- The list of pipelines.public ListPipelinesResult withPipelines(java.util.Collection<PipelineSummary> pipelines)
The list of pipelines.
pipelines
- The list of pipelines.public void setNextToken(java.lang.String nextToken)
If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
nextToken
- If the amount of returned information is significantly large, an
identifier is also returned which can be used in a subsequent list
pipelines call to return the next set of pipelines in the list.public java.lang.String getNextToken()
If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
public ListPipelinesResult withNextToken(java.lang.String nextToken)
If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
nextToken
- If the amount of returned information is significantly large, an
identifier is also returned which can be used in a subsequent list
pipelines call to return the next set of pipelines in the list.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 ListPipelinesResult clone()
clone
in class java.lang.Object