Interface PluginVisualTableQuerySort.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<PluginVisualTableQuerySort.Builder,
,PluginVisualTableQuerySort> SdkBuilder<PluginVisualTableQuerySort.Builder,
,PluginVisualTableQuerySort> SdkPojo
- Enclosing class:
PluginVisualTableQuerySort
@Mutable
@NotThreadSafe
public static interface PluginVisualTableQuerySort.Builder
extends SdkPojo, CopyableBuilder<PluginVisualTableQuerySort.Builder,PluginVisualTableQuerySort>
-
Method Summary
Modifier and TypeMethodDescriptionitemsLimitConfiguration
(Consumer<PluginVisualItemsLimitConfiguration.Builder> itemsLimitConfiguration) The maximum amount of data to be returned by a query.itemsLimitConfiguration
(PluginVisualItemsLimitConfiguration itemsLimitConfiguration) The maximum amount of data to be returned by a query.rowSort
(Collection<FieldSortOptions> rowSort) Determines how data is sorted in the response.rowSort
(Consumer<FieldSortOptions.Builder>... rowSort) Determines how data is sorted in the response.rowSort
(FieldSortOptions... rowSort) Determines how data is sorted in the response.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
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 Details
-
rowSort
Determines how data is sorted in the response.
- Parameters:
rowSort
- Determines how data is sorted in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rowSort
Determines how data is sorted in the response.
- Parameters:
rowSort
- Determines how data is sorted in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rowSort
Determines how data is sorted in the response.
This is a convenience method that creates an instance of theFieldSortOptions.Builder
avoiding the need to create one manually viaFieldSortOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed torowSort(List<FieldSortOptions>)
.- Parameters:
rowSort
- a consumer that will call methods onFieldSortOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
itemsLimitConfiguration
PluginVisualTableQuerySort.Builder itemsLimitConfiguration(PluginVisualItemsLimitConfiguration itemsLimitConfiguration) The maximum amount of data to be returned by a query.
- Parameters:
itemsLimitConfiguration
- The maximum amount of data to be returned by a query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
itemsLimitConfiguration
default PluginVisualTableQuerySort.Builder itemsLimitConfiguration(Consumer<PluginVisualItemsLimitConfiguration.Builder> itemsLimitConfiguration) The maximum amount of data to be returned by a query.
This is a convenience method that creates an instance of thePluginVisualItemsLimitConfiguration.Builder
avoiding the need to create one manually viaPluginVisualItemsLimitConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toitemsLimitConfiguration(PluginVisualItemsLimitConfiguration)
.- Parameters:
itemsLimitConfiguration
- a consumer that will call methods onPluginVisualItemsLimitConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-