Class ListPipelinesResult
- java.lang.Object
-
- com.amazonaws.services.elastictranscoder.model.ListPipelinesResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ListPipelinesResult extends Object implements Serializable, Cloneable
A list of the pipelines associated with the current AWS account.
- 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)StringgetNextPageToken()A value that you use to access the second and subsequent pages of results, if any.List<Pipeline>getPipelines()An array ofPipelineobjects.inthashCode()voidsetNextPageToken(String nextPageToken)A value that you use to access the second and subsequent pages of results, if any.voidsetPipelines(Collection<Pipeline> pipelines)An array ofPipelineobjects.StringtoString()Returns a string representation of this object; useful for testing and debugging.ListPipelinesResultwithNextPageToken(String nextPageToken)A value that you use to access the second and subsequent pages of results, if any.ListPipelinesResultwithPipelines(Pipeline... pipelines)An array ofPipelineobjects.ListPipelinesResultwithPipelines(Collection<Pipeline> pipelines)An array ofPipelineobjects.
-
-
-
Method Detail
-
getPipelines
public List<Pipeline> getPipelines()
An array of
Pipelineobjects.- Returns:
- An array of
Pipelineobjects.
-
setPipelines
public void setPipelines(Collection<Pipeline> pipelines)
An array of
Pipelineobjects.- Parameters:
pipelines- An array ofPipelineobjects.
-
withPipelines
public ListPipelinesResult withPipelines(Pipeline... pipelines)
An array of
Pipelineobjects.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- An array ofPipelineobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withPipelines
public ListPipelinesResult withPipelines(Collection<Pipeline> pipelines)
An array of
Pipelineobjects.- Parameters:
pipelines- An array ofPipelineobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextPageToken
public void setNextPageToken(String nextPageToken)
A value that you use to access the second and subsequent pages of results, if any. When the pipelines fit on one page or when you've reached the last page of results, the value of
NextPageTokenisnull.- Parameters:
nextPageToken- A value that you use to access the second and subsequent pages of results, if any. When the pipelines fit on one page or when you've reached the last page of results, the value ofNextPageTokenisnull.
-
getNextPageToken
public String getNextPageToken()
A value that you use to access the second and subsequent pages of results, if any. When the pipelines fit on one page or when you've reached the last page of results, the value of
NextPageTokenisnull.- Returns:
- A value that you use to access the second and subsequent pages of
results, if any. When the pipelines fit on one page or when
you've reached the last page of results, the value of
NextPageTokenisnull.
-
withNextPageToken
public ListPipelinesResult withNextPageToken(String nextPageToken)
A value that you use to access the second and subsequent pages of results, if any. When the pipelines fit on one page or when you've reached the last page of results, the value of
NextPageTokenisnull.- Parameters:
nextPageToken- A value that you use to access the second and subsequent pages of results, if any. When the pipelines fit on one page or when you've reached the last page of results, the value ofNextPageTokenisnull.- 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ListPipelinesResult clone()
-
-