Interface FieldSort.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FieldSort.Builder,FieldSort>,SdkBuilder<FieldSort.Builder,FieldSort>,SdkPojo
- Enclosing class:
- FieldSort
@Mutable @NotThreadSafe public static interface FieldSort.Builder extends SdkPojo, CopyableBuilder<FieldSort.Builder,FieldSort>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FieldSort.Builderdirection(String direction)The sort direction.FieldSort.Builderdirection(SortDirection direction)The sort direction.FieldSort.BuilderfieldId(String fieldId)The sort configuration target field.-
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 Detail
-
fieldId
FieldSort.Builder fieldId(String fieldId)
The sort configuration target field.
- Parameters:
fieldId- The sort configuration target field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
direction
FieldSort.Builder direction(String direction)
The sort direction. Choose one of the following options:
-
ASC: Ascending -
DESC: Descending
- Parameters:
direction- The sort direction. Choose one of the following options:-
ASC: Ascending -
DESC: Descending
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SortDirection,SortDirection
-
-
direction
FieldSort.Builder direction(SortDirection direction)
The sort direction. Choose one of the following options:
-
ASC: Ascending -
DESC: Descending
- Parameters:
direction- The sort direction. Choose one of the following options:-
ASC: Ascending -
DESC: Descending
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SortDirection,SortDirection
-
-
-