Interface DataProductSort.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataProductSort.Builder,DataProductSort>,SdkBuilder<DataProductSort.Builder,DataProductSort>,SdkPojo
- Enclosing class:
- DataProductSort
public static interface DataProductSort.Builder extends SdkPojo, CopyableBuilder<DataProductSort.Builder,DataProductSort>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataProductSort.BuildersortBy(String sortBy)Field to sort the data products by.DataProductSort.BuildersortBy(DataProductSortBy sortBy)Field to sort the data products by.DataProductSort.BuildersortOrder(String sortOrder)The sorting order.DataProductSort.BuildersortOrder(SortOrder sortOrder)The sorting order.-
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
-
sortBy
DataProductSort.Builder sortBy(String sortBy)
Field to sort the data products by.
- Parameters:
sortBy- Field to sort the data products by.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataProductSortBy,DataProductSortBy
-
sortBy
DataProductSort.Builder sortBy(DataProductSortBy sortBy)
Field to sort the data products by.
- Parameters:
sortBy- Field to sort the data products by.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataProductSortBy,DataProductSortBy
-
sortOrder
DataProductSort.Builder sortOrder(String sortOrder)
The sorting order. Can be
ASCENDINGorDESCENDING. The default value isDESCENDING.
-
sortOrder
DataProductSort.Builder sortOrder(SortOrder sortOrder)
The sorting order. Can be
ASCENDINGorDESCENDING. The default value isDESCENDING.
-
-