Class DescribePipelinesResult
- java.lang.Object
-
- com.amazonaws.services.datapipeline.model.DescribePipelinesResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribePipelinesResult extends Object implements Serializable, Cloneable
Contains the output of DescribePipelines.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribePipelinesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribePipelinesResult
clone()
boolean
equals(Object obj)
List<PipelineDescription>
getPipelineDescriptionList()
An array of descriptions for the specified pipelines.int
hashCode()
void
setPipelineDescriptionList(Collection<PipelineDescription> pipelineDescriptionList)
An array of descriptions for the specified pipelines.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribePipelinesResult
withPipelineDescriptionList(PipelineDescription... pipelineDescriptionList)
An array of descriptions for the specified pipelines.DescribePipelinesResult
withPipelineDescriptionList(Collection<PipelineDescription> pipelineDescriptionList)
An array of descriptions for the specified pipelines.
-
-
-
Method Detail
-
getPipelineDescriptionList
public List<PipelineDescription> getPipelineDescriptionList()
An array of descriptions for the specified pipelines.
- Returns:
- An array of descriptions for the specified pipelines.
-
setPipelineDescriptionList
public void setPipelineDescriptionList(Collection<PipelineDescription> pipelineDescriptionList)
An array of descriptions for the specified pipelines.
- Parameters:
pipelineDescriptionList
- An array of descriptions for the specified pipelines.
-
withPipelineDescriptionList
public DescribePipelinesResult withPipelineDescriptionList(PipelineDescription... pipelineDescriptionList)
An array of descriptions for the specified pipelines.
NOTE: This method appends the values to the existing list (if any). Use
setPipelineDescriptionList(java.util.Collection)
orwithPipelineDescriptionList(java.util.Collection)
if you want to override the existing values.- Parameters:
pipelineDescriptionList
- An array of descriptions for the specified pipelines.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withPipelineDescriptionList
public DescribePipelinesResult withPipelineDescriptionList(Collection<PipelineDescription> pipelineDescriptionList)
An array of descriptions for the specified pipelines.
- Parameters:
pipelineDescriptionList
- An array of descriptions for the specified pipelines.- 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 DescribePipelinesResult clone()
-
-