public class ListPipelinesResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
A list of the pipelines associated with the current AWS account.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
nextPageToken
A value that you use to access the second and subsequent pages of
results, if any.
|
private SdkInternalList<Pipeline> |
pipelines
An array of
Pipeline objects. |
Constructor and Description |
---|
ListPipelinesResult() |
Modifier and Type | Method and Description |
---|---|
ListPipelinesResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getNextPageToken()
A value that you use to access the second and subsequent pages of
results, if any.
|
java.util.List<Pipeline> |
getPipelines()
An array of
Pipeline objects. |
int |
hashCode() |
void |
setNextPageToken(java.lang.String nextPageToken)
A value that you use to access the second and subsequent pages of
results, if any.
|
void |
setPipelines(java.util.Collection<Pipeline> pipelines)
An array of
Pipeline objects. |
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListPipelinesResult |
withNextPageToken(java.lang.String nextPageToken)
A value that you use to access the second and subsequent pages of
results, if any.
|
ListPipelinesResult |
withPipelines(java.util.Collection<Pipeline> pipelines)
An array of
Pipeline objects. |
ListPipelinesResult |
withPipelines(Pipeline... pipelines)
An array of
Pipeline objects. |
private SdkInternalList<Pipeline> pipelines
An array of Pipeline
objects.
private java.lang.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 NextPageToken
is null
.
public java.util.List<Pipeline> getPipelines()
An array of Pipeline
objects.
Pipeline
objects.public void setPipelines(java.util.Collection<Pipeline> pipelines)
An array of Pipeline
objects.
pipelines
- An array of Pipeline
objects.public ListPipelinesResult withPipelines(Pipeline... pipelines)
An array of Pipeline
objects.
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
- An array of Pipeline
objects.public ListPipelinesResult withPipelines(java.util.Collection<Pipeline> pipelines)
An array of Pipeline
objects.
pipelines
- An array of Pipeline
objects.public void setNextPageToken(java.lang.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 NextPageToken
is null
.
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
NextPageToken
is null
.public java.lang.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 NextPageToken
is null
.
NextPageToken
is null
.public ListPipelinesResult withNextPageToken(java.lang.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 NextPageToken
is null
.
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
NextPageToken
is null
.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