Class ScheduledQueryInsightsResponse
- java.lang.Object
-
- software.amazon.awssdk.services.timestreamquery.model.ScheduledQueryInsightsResponse
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<ScheduledQueryInsightsResponse.Builder,ScheduledQueryInsightsResponse>
@Generated("software.amazon.awssdk:codegen") public final class ScheduledQueryInsightsResponse extends Object implements SdkPojo, Serializable, ToCopyableBuilder<ScheduledQueryInsightsResponse.Builder,ScheduledQueryInsightsResponse>
Provides various insights and metrics related to the
ExecuteScheduledQueryRequestthat was executed.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceScheduledQueryInsightsResponse.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ScheduledQueryInsightsResponse.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()LongoutputBytes()Indicates the size of query result set in bytes.LongoutputRows()Indicates the total number of rows returned as part of the query result set.QuerySpatialCoveragequerySpatialCoverage()Provides insights into the spatial coverage of the query, including the table with sub-optimal (max) spatial pruning.LongqueryTableCount()Indicates the number of tables in the query.QueryTemporalRangequeryTemporalRange()Provides insights into the temporal range of the query, including the table with the largest (max) time range.Map<String,SdkField<?>>sdkFieldNameToField()List<SdkField<?>>sdkFields()static Class<? extends ScheduledQueryInsightsResponse.Builder>serializableBuilderClass()ScheduledQueryInsightsResponse.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
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
-
querySpatialCoverage
public final QuerySpatialCoverage querySpatialCoverage()
Provides insights into the spatial coverage of the query, including the table with sub-optimal (max) spatial pruning. This information can help you identify areas for improvement in your partitioning strategy to enhance spatial pruning.
- Returns:
- Provides insights into the spatial coverage of the query, including the table with sub-optimal (max) spatial pruning. This information can help you identify areas for improvement in your partitioning strategy to enhance spatial pruning.
-
queryTemporalRange
public final QueryTemporalRange queryTemporalRange()
Provides insights into the temporal range of the query, including the table with the largest (max) time range. Following are some of the potential options for optimizing time-based pruning:
-
Add missing time-predicates.
-
Remove functions around the time predicates.
-
Add time predicates to all the sub-queries.
- Returns:
- Provides insights into the temporal range of the query, including the table with the largest (max) time
range. Following are some of the potential options for optimizing time-based pruning:
-
Add missing time-predicates.
-
Remove functions around the time predicates.
-
Add time predicates to all the sub-queries.
-
-
-
queryTableCount
public final Long queryTableCount()
Indicates the number of tables in the query.
- Returns:
- Indicates the number of tables in the query.
-
outputRows
public final Long outputRows()
Indicates the total number of rows returned as part of the query result set. You can use this data to validate if the number of rows in the result set have changed as part of the query tuning exercise.
- Returns:
- Indicates the total number of rows returned as part of the query result set. You can use this data to validate if the number of rows in the result set have changed as part of the query tuning exercise.
-
outputBytes
public final Long outputBytes()
Indicates the size of query result set in bytes. You can use this data to validate if the result set has changed as part of the query tuning exercise.
- Returns:
- Indicates the size of query result set in bytes. You can use this data to validate if the result set has changed as part of the query tuning exercise.
-
toBuilder
public ScheduledQueryInsightsResponse.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<ScheduledQueryInsightsResponse.Builder,ScheduledQueryInsightsResponse>
-
builder
public static ScheduledQueryInsightsResponse.Builder builder()
-
serializableBuilderClass
public static Class<? extends ScheduledQueryInsightsResponse.Builder> serializableBuilderClass()
-
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.
-
sdkFieldNameToField
public final Map<String,SdkField<?>> sdkFieldNameToField()
- Specified by:
sdkFieldNameToFieldin interfaceSdkPojo
-
-