Class ListPipelinesResult
- java.lang.Object
-
- com.amazonaws.services.codepipeline.model.ListPipelinesResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ListPipelinesResult extends Object implements Serializable, Cloneable
Represents the output of a list pipelines action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListPipelinesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListPipelinesResult
clone()
boolean
equals(Object obj)
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.List<PipelineSummary>
getPipelines()
The list of pipelines.int
hashCode()
void
setNextToken(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(Collection<PipelineSummary> pipelines)
The list of pipelines.String
toString()
Returns a string representation of this object; useful for testing and debugging.ListPipelinesResult
withNextToken(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(PipelineSummary... pipelines)
The list of pipelines.ListPipelinesResult
withPipelines(Collection<PipelineSummary> pipelines)
The list of pipelines.
-
-
-
Method Detail
-
getPipelines
public List<PipelineSummary> getPipelines()
The list of pipelines.
- Returns:
- The list of pipelines.
-
setPipelines
public void setPipelines(Collection<PipelineSummary> pipelines)
The list of pipelines.
- Parameters:
pipelines
- The list of pipelines.
-
withPipelines
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)
orwithPipelines(java.util.Collection)
if you want to override the existing values.- Parameters:
pipelines
- The list of pipelines.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withPipelines
public ListPipelinesResult withPipelines(Collection<PipelineSummary> pipelines)
The list of pipelines.
- Parameters:
pipelines
- The list of pipelines.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextToken
public void setNextToken(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.
- Parameters:
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.
-
getNextToken
public 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.
- Returns:
- 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.
-
withNextToken
public ListPipelinesResult withNextToken(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.
- Parameters:
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.- 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 ListPipelinesResult clone()
-
-