Class DescribeObjectsResult
- java.lang.Object
-
- com.amazonaws.services.datapipeline.model.DescribeObjectsResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DescribeObjectsResult extends Object implements Serializable, Cloneable
Contains the output of DescribeObjects.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeObjectsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeObjectsResultclone()booleanequals(Object obj)BooleangetHasMoreResults()Indicates whether there are more results to return.StringgetMarker()The starting point for the next page of results.List<PipelineObject>getPipelineObjects()An array of object definitions.inthashCode()BooleanisHasMoreResults()Indicates whether there are more results to return.voidsetHasMoreResults(Boolean hasMoreResults)Indicates whether there are more results to return.voidsetMarker(String marker)The starting point for the next page of results.voidsetPipelineObjects(Collection<PipelineObject> pipelineObjects)An array of object definitions.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeObjectsResultwithHasMoreResults(Boolean hasMoreResults)Indicates whether there are more results to return.DescribeObjectsResultwithMarker(String marker)The starting point for the next page of results.DescribeObjectsResultwithPipelineObjects(PipelineObject... pipelineObjects)An array of object definitions.DescribeObjectsResultwithPipelineObjects(Collection<PipelineObject> pipelineObjects)An array of object definitions.
-
-
-
Method Detail
-
getPipelineObjects
public List<PipelineObject> getPipelineObjects()
An array of object definitions.
- Returns:
- An array of object definitions.
-
setPipelineObjects
public void setPipelineObjects(Collection<PipelineObject> pipelineObjects)
An array of object definitions.
- Parameters:
pipelineObjects- An array of object definitions.
-
withPipelineObjects
public DescribeObjectsResult withPipelineObjects(PipelineObject... pipelineObjects)
An array of object definitions.
NOTE: This method appends the values to the existing list (if any). Use
setPipelineObjects(java.util.Collection)orwithPipelineObjects(java.util.Collection)if you want to override the existing values.- Parameters:
pipelineObjects- An array of object definitions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withPipelineObjects
public DescribeObjectsResult withPipelineObjects(Collection<PipelineObject> pipelineObjects)
An array of object definitions.
- Parameters:
pipelineObjects- An array of object definitions.- 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
DescribeObjectsagain 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, callDescribeObjectsagain 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
DescribeObjectsagain 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
DescribeObjectsagain with this marker value. If the value is null, there are no more results.
-
withMarker
public DescribeObjectsResult withMarker(String marker)
The starting point for the next page of results. To view the next page of results, call
DescribeObjectsagain 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, callDescribeObjectsagain 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 to return.
- Parameters:
hasMoreResults- Indicates whether there are more results to return.
-
getHasMoreResults
public Boolean getHasMoreResults()
Indicates whether there are more results to return.
- Returns:
- Indicates whether there are more results to return.
-
withHasMoreResults
public DescribeObjectsResult withHasMoreResults(Boolean hasMoreResults)
Indicates whether there are more results to return.
- Parameters:
hasMoreResults- Indicates whether there are more results to return.- 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 to return.
- Returns:
- Indicates whether there are more results to return.
-
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 DescribeObjectsResult clone()
-
-