Interface SearchResourcesSortCriteria.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SearchResourcesSortCriteria.Builder,SearchResourcesSortCriteria>,SdkBuilder<SearchResourcesSortCriteria.Builder,SearchResourcesSortCriteria>,SdkPojo
- Enclosing class:
- SearchResourcesSortCriteria
public static interface SearchResourcesSortCriteria.Builder extends SdkPojo, CopyableBuilder<SearchResourcesSortCriteria.Builder,SearchResourcesSortCriteria>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchResourcesSortCriteria.BuilderattributeName(String attributeName)The property to sort the results by.SearchResourcesSortCriteria.BuilderattributeName(SearchResourcesSortAttributeName attributeName)The property to sort the results by.SearchResourcesSortCriteria.BuilderorderBy(String orderBy)The sort order to apply to the results, based on the value for the property specified by the attributeName property.SearchResourcesSortCriteria.BuilderorderBy(OrderBy orderBy)The sort order to apply to the results, based on the value for the property specified by the attributeName property.-
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
-
attributeName
SearchResourcesSortCriteria.Builder attributeName(String attributeName)
The property to sort the results by.
- Parameters:
attributeName- The property to sort the results by.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchResourcesSortAttributeName,SearchResourcesSortAttributeName
-
attributeName
SearchResourcesSortCriteria.Builder attributeName(SearchResourcesSortAttributeName attributeName)
The property to sort the results by.
- Parameters:
attributeName- The property to sort the results by.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchResourcesSortAttributeName,SearchResourcesSortAttributeName
-
orderBy
SearchResourcesSortCriteria.Builder orderBy(String orderBy)
The sort order to apply to the results, based on the value for the property specified by the attributeName property. Valid values are: ASC, sort the results in ascending order; and, DESC, sort the results in descending order.
- Parameters:
orderBy- The sort order to apply to the results, based on the value for the property specified by the attributeName property. Valid values are: ASC, sort the results in ascending order; and, DESC, sort the results in descending order.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OrderBy,OrderBy
-
orderBy
SearchResourcesSortCriteria.Builder orderBy(OrderBy orderBy)
The sort order to apply to the results, based on the value for the property specified by the attributeName property. Valid values are: ASC, sort the results in ascending order; and, DESC, sort the results in descending order.
- Parameters:
orderBy- The sort order to apply to the results, based on the value for the property specified by the attributeName property. Valid values are: ASC, sort the results in ascending order; and, DESC, sort the results in descending order.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OrderBy,OrderBy
-
-