Class QueryObjectsRequest
- java.lang.Object
-
- software.amazon.awssdk.core.SdkRequest
-
- software.amazon.awssdk.awscore.AwsRequest
-
- software.amazon.awssdk.services.datapipeline.model.DataPipelineRequest
-
- software.amazon.awssdk.services.datapipeline.model.QueryObjectsRequest
-
- All Implemented Interfaces:
SdkPojo,ToCopyableBuilder<QueryObjectsRequest.Builder,QueryObjectsRequest>
@Generated("software.amazon.awssdk:codegen") public final class QueryObjectsRequest extends DataPipelineRequest implements ToCopyableBuilder<QueryObjectsRequest.Builder,QueryObjectsRequest>
Contains the parameters for QueryObjects.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceQueryObjectsRequest.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static QueryObjectsRequest.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()Integerlimit()The maximum number of object names thatQueryObjectswill return in a single call.Stringmarker()The starting point for the results to be returned.StringpipelineId()The ID of the pipeline.Queryquery()The query that defines the objects to be returned.List<SdkField<?>>sdkFields()static Class<? extends QueryObjectsRequest.Builder>serializableBuilderClass()Stringsphere()Indicates whether the query applies to components or instances.QueryObjectsRequest.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class software.amazon.awssdk.awscore.AwsRequest
overrideConfiguration
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
pipelineId
public final String pipelineId()
The ID of the pipeline.
- Returns:
- The ID of the pipeline.
-
query
public final 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.- Returns:
- 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.
-
sphere
public final String sphere()
Indicates whether the query applies to components or instances. The possible values are:
COMPONENT,INSTANCE, andATTEMPT.- Returns:
- Indicates whether the query applies to components or instances. The possible values are:
COMPONENT,INSTANCE, andATTEMPT.
-
marker
public final 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.- Returns:
- 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.
-
limit
public final Integer limit()
The maximum number of object names that
QueryObjectswill return in a single call. The default value is 100.- Returns:
- The maximum number of object names that
QueryObjectswill return in a single call. The default value is 100.
-
toBuilder
public QueryObjectsRequest.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<QueryObjectsRequest.Builder,QueryObjectsRequest>- Specified by:
toBuilderin classDataPipelineRequest
-
builder
public static QueryObjectsRequest.Builder builder()
-
serializableBuilderClass
public static Class<? extends QueryObjectsRequest.Builder> serializableBuilderClass()
-
hashCode
public final int hashCode()
- Overrides:
hashCodein classAwsRequest
-
equals
public final boolean equals(Object obj)
- Overrides:
equalsin classAwsRequest
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
getValueForField
public final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
- Overrides:
getValueForFieldin classSdkRequest
-
-