Interface DescribeObjectsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeObjectsResponse.Builder,DescribeObjectsResponse>,DataPipelineResponse.Builder,SdkBuilder<DescribeObjectsResponse.Builder,DescribeObjectsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeObjectsResponse
public static interface DescribeObjectsResponse.Builder extends DataPipelineResponse.Builder, SdkPojo, CopyableBuilder<DescribeObjectsResponse.Builder,DescribeObjectsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeObjectsResponse.BuilderhasMoreResults(Boolean hasMoreResults)Indicates whether there are more results to return.DescribeObjectsResponse.Buildermarker(String marker)The starting point for the next page of results.DescribeObjectsResponse.BuilderpipelineObjects(Collection<PipelineObject> pipelineObjects)An array of object definitions.DescribeObjectsResponse.BuilderpipelineObjects(Consumer<PipelineObject.Builder>... pipelineObjects)An array of object definitions.DescribeObjectsResponse.BuilderpipelineObjects(PipelineObject... pipelineObjects)An array of object definitions.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.datapipeline.model.DataPipelineResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
pipelineObjects
DescribeObjectsResponse.Builder pipelineObjects(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.
-
pipelineObjects
DescribeObjectsResponse.Builder pipelineObjects(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.
-
pipelineObjects
DescribeObjectsResponse.Builder pipelineObjects(Consumer<PipelineObject.Builder>... pipelineObjects)
An array of object definitions.
This is a convenience method that creates an instance of thePipelineObject.Builderavoiding the need to create one manually viaPipelineObject.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#pipelineObjects(List.) - Parameters:
pipelineObjects- a consumer that will call methods onPipelineObject.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#pipelineObjects(java.util.Collection)
-
marker
DescribeObjectsResponse.Builder marker(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.
-
hasMoreResults
DescribeObjectsResponse.Builder hasMoreResults(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.
-
-