Interface QueryObjectsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<QueryObjectsRequest.Builder,QueryObjectsRequest>,DataPipelineRequest.Builder,SdkBuilder<QueryObjectsRequest.Builder,QueryObjectsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- QueryObjectsRequest
public static interface QueryObjectsRequest.Builder extends DataPipelineRequest.Builder, SdkPojo, CopyableBuilder<QueryObjectsRequest.Builder,QueryObjectsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description QueryObjectsRequest.Builderlimit(Integer limit)The maximum number of object names thatQueryObjectswill return in a single call.QueryObjectsRequest.Buildermarker(String marker)The starting point for the results to be returned.QueryObjectsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)QueryObjectsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)QueryObjectsRequest.BuilderpipelineId(String pipelineId)The ID of the pipeline.default QueryObjectsRequest.Builderquery(Consumer<Query.Builder> query)The query that defines the objects to be returned.QueryObjectsRequest.Builderquery(Query query)The query that defines the objects to be returned.QueryObjectsRequest.Buildersphere(String sphere)Indicates whether the query applies to components or instances.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.datapipeline.model.DataPipelineRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
pipelineId
QueryObjectsRequest.Builder pipelineId(String pipelineId)
The ID of the pipeline.
- Parameters:
pipelineId- The ID of the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
query
QueryObjectsRequest.Builder query(Query query)
The query that defines the objects to be returned. The
Queryobject 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.- Parameters:
query- The query that defines the objects to be returned. TheQueryobject 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
query
default QueryObjectsRequest.Builder query(Consumer<Query.Builder> query)
The query that defines the objects to be returned. The
This is a convenience method that creates an instance of theQueryobject 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.Builderavoiding the need to create one manually viaQuery.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toquery(Query).- Parameters:
query- a consumer that will call methods onQuery.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
query(Query)
-
sphere
QueryObjectsRequest.Builder sphere(String sphere)
Indicates whether the query applies to components or instances. The possible values are:
COMPONENT,INSTANCE, andATTEMPT.- Parameters:
sphere- Indicates whether the query applies to components or instances. The possible values are:COMPONENT,INSTANCE, andATTEMPT.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
marker
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
QueryObjectswith the marker value from the previous call to retrieve the next set of results.- Parameters:
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 callQueryObjectswith the marker value from the previous call to retrieve the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
limit
QueryObjectsRequest.Builder limit(Integer limit)
The maximum number of object names that
QueryObjectswill return in a single call. The default value is 100.- Parameters:
limit- The maximum number of object names thatQueryObjectswill return in a single call. The default value is 100.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
QueryObjectsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
QueryObjectsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-