Class ListPipelinesResult
- java.lang.Object
-
- com.amazonaws.services.datapipeline.model.ListPipelinesResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ListPipelinesResult extends Object implements Serializable, Cloneable
Contains the output of ListPipelines.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListPipelinesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListPipelinesResultclone()booleanequals(Object obj)BooleangetHasMoreResults()Indicates whether there are more results that can be obtained by a subsequent call.StringgetMarker()The starting point for the next page of results.List<PipelineIdName>getPipelineIdList()The pipeline identifiers.inthashCode()BooleanisHasMoreResults()Indicates whether there are more results that can be obtained by a subsequent call.voidsetHasMoreResults(Boolean hasMoreResults)Indicates whether there are more results that can be obtained by a subsequent call.voidsetMarker(String marker)The starting point for the next page of results.voidsetPipelineIdList(Collection<PipelineIdName> pipelineIdList)The pipeline identifiers.StringtoString()Returns a string representation of this object; useful for testing and debugging.ListPipelinesResultwithHasMoreResults(Boolean hasMoreResults)Indicates whether there are more results that can be obtained by a subsequent call.ListPipelinesResultwithMarker(String marker)The starting point for the next page of results.ListPipelinesResultwithPipelineIdList(PipelineIdName... pipelineIdList)The pipeline identifiers.ListPipelinesResultwithPipelineIdList(Collection<PipelineIdName> pipelineIdList)The pipeline identifiers.
-
-
-
Method Detail
-
getPipelineIdList
public List<PipelineIdName> getPipelineIdList()
The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.
- Returns:
- The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.
-
setPipelineIdList
public void setPipelineIdList(Collection<PipelineIdName> pipelineIdList)
The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.
- Parameters:
pipelineIdList- The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.
-
withPipelineIdList
public ListPipelinesResult withPipelineIdList(PipelineIdName... pipelineIdList)
The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.
NOTE: This method appends the values to the existing list (if any). Use
setPipelineIdList(java.util.Collection)orwithPipelineIdList(java.util.Collection)if you want to override the existing values.- Parameters:
pipelineIdList- The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withPipelineIdList
public ListPipelinesResult withPipelineIdList(Collection<PipelineIdName> pipelineIdList)
The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.
- Parameters:
pipelineIdList- The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setMarker
public void setMarker(String marker)
The starting point for the next page of results. To view the next page of results, call
ListPipelinesOutputagain with this marker value. If the value is null, there are no more results.- Parameters:
marker- The starting point for the next page of results. To view the next page of results, callListPipelinesOutputagain with this marker value. If the value is null, there are no more results.
-
getMarker
public String getMarker()
The starting point for the next page of results. To view the next page of results, call
ListPipelinesOutputagain with this marker value. If the value is null, there are no more results.- Returns:
- The starting point for the next page of results. To view the next
page of results, call
ListPipelinesOutputagain with this marker value. If the value is null, there are no more results.
-
withMarker
public ListPipelinesResult withMarker(String marker)
The starting point for the next page of results. To view the next page of results, call
ListPipelinesOutputagain with this marker value. If the value is null, there are no more results.- Parameters:
marker- The starting point for the next page of results. To view the next page of results, callListPipelinesOutputagain with this marker value. If the value is null, there are no more results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setHasMoreResults
public void setHasMoreResults(Boolean hasMoreResults)
Indicates whether there are more results that can be obtained by a subsequent call.
- Parameters:
hasMoreResults- Indicates whether there are more results that can be obtained by a subsequent call.
-
getHasMoreResults
public Boolean getHasMoreResults()
Indicates whether there are more results that can be obtained by a subsequent call.
- Returns:
- Indicates whether there are more results that can be obtained by a subsequent call.
-
withHasMoreResults
public ListPipelinesResult withHasMoreResults(Boolean hasMoreResults)
Indicates whether there are more results that can be obtained by a subsequent call.
- Parameters:
hasMoreResults- Indicates whether there are more results that can be obtained by a subsequent call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isHasMoreResults
public Boolean isHasMoreResults()
Indicates whether there are more results that can be obtained by a subsequent call.
- Returns:
- Indicates whether there are more results that can be obtained by a subsequent call.
-
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 ListPipelinesResult clone()
-
-