CopyableBuilder<QueryObjectsRequest.Builder,QueryObjectsRequest>
, SdkBuilder<QueryObjectsRequest.Builder,QueryObjectsRequest>
public static interface QueryObjectsRequest.Builder extends CopyableBuilder<QueryObjectsRequest.Builder,QueryObjectsRequest>
Modifier and Type | Method | Description |
---|---|---|
QueryObjectsRequest.Builder |
limit(Integer limit) |
The maximum number of object names that
QueryObjects will return in a single call. |
QueryObjectsRequest.Builder |
marker(String marker) |
The starting point for the results to be returned.
|
QueryObjectsRequest.Builder |
pipelineId(String pipelineId) |
The ID of the pipeline.
|
QueryObjectsRequest.Builder |
query(Query query) |
The query that defines the objects to be returned.
|
QueryObjectsRequest.Builder |
sphere(String sphere) |
Indicates whether the query applies to components or instances.
|
copy
apply, build
QueryObjectsRequest.Builder pipelineId(String pipelineId)
The ID of the pipeline.
pipelineId
- The ID of the pipeline.QueryObjectsRequest.Builder query(Query query)
The query that defines the objects to be returned. The Query
object can contain a maximum of ten
selectors. The conditions in the query are limited to top-level String fields in the object. These filters
can be applied to components, instances, and attempts.
query
- The query that defines the objects to be returned. The Query
object can contain a maximum
of ten selectors. The conditions in the query are limited to top-level String fields in the object.
These filters can be applied to components, instances, and attempts.QueryObjectsRequest.Builder sphere(String sphere)
Indicates whether the query applies to components or instances. The possible values are:
COMPONENT
, INSTANCE
, and ATTEMPT
.
sphere
- Indicates whether the query applies to components or instances. The possible values are:
COMPONENT
, INSTANCE
, and ATTEMPT
.QueryObjectsRequest.Builder marker(String marker)
The starting point for the results to be returned. For the first call, this value should be empty. As long as
there are more results, continue to call QueryObjects
with the marker value from the previous
call to retrieve the next set of results.
marker
- The starting point for the results to be returned. For the first call, this value should be empty. As
long as there are more results, continue to call QueryObjects
with the marker value from
the previous call to retrieve the next set of results.QueryObjectsRequest.Builder limit(Integer limit)
The maximum number of object names that QueryObjects
will return in a single call. The default
value is 100.
limit
- The maximum number of object names that QueryObjects
will return in a single call. The
default value is 100.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.