Interface SortProperty.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SortProperty.Builder,SortProperty>,SdkBuilder<SortProperty.Builder,SortProperty>,SdkPojo
- Enclosing class:
- SortProperty
public static interface SortProperty.Builder extends SdkPojo, CopyableBuilder<SortProperty.Builder,SortProperty>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SortProperty.Builderdirection(String direction)The direction of the sort, either ascending or descending.SortProperty.Builderdirection(SortDirection direction)The direction of the sort, either ascending or descending.SortProperty.Builderfield(String field)The field to perform the sort on.-
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, sdkFields
-
-
-
-
Method Detail
-
field
SortProperty.Builder field(String field)
The field to perform the sort on.
- Parameters:
field- The field to perform the sort on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
direction
SortProperty.Builder direction(String direction)
The direction of the sort, either ascending or descending.
- Parameters:
direction- The direction of the sort, either ascending or descending.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SortDirection,SortDirection
-
direction
SortProperty.Builder direction(SortDirection direction)
The direction of the sort, either ascending or descending.
- Parameters:
direction- The direction of the sort, either ascending or descending.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SortDirection,SortDirection
-
-