Interface TabularConditions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TabularConditions.Builder,TabularConditions>,SdkBuilder<TabularConditions.Builder,TabularConditions>,SdkPojo
- Enclosing class:
- TabularConditions
public static interface TabularConditions.Builder extends SdkPojo, CopyableBuilder<TabularConditions.Builder,TabularConditions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TabularConditions.BuilderorderBy(Collection<OrderBy> orderBy)Filter criteria that orders the output.TabularConditions.BuilderorderBy(Consumer<OrderBy.Builder>... orderBy)Filter criteria that orders the output.TabularConditions.BuilderorderBy(OrderBy... orderBy)Filter criteria that orders the output.TabularConditions.BuilderpropertyFilters(Collection<PropertyFilter> propertyFilters)You can filter the request using various logical operators and a key-value format.TabularConditions.BuilderpropertyFilters(Consumer<PropertyFilter.Builder>... propertyFilters)You can filter the request using various logical operators and a key-value format.TabularConditions.BuilderpropertyFilters(PropertyFilter... propertyFilters)You can filter the request using various logical operators and a key-value format.-
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
-
orderBy
TabularConditions.Builder orderBy(Collection<OrderBy> orderBy)
Filter criteria that orders the output. It can be sorted in ascending or descending order.
- Parameters:
orderBy- Filter criteria that orders the output. It can be sorted in ascending or descending order.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orderBy
TabularConditions.Builder orderBy(OrderBy... orderBy)
Filter criteria that orders the output. It can be sorted in ascending or descending order.
- Parameters:
orderBy- Filter criteria that orders the output. It can be sorted in ascending or descending order.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orderBy
TabularConditions.Builder orderBy(Consumer<OrderBy.Builder>... orderBy)
Filter criteria that orders the output. It can be sorted in ascending or descending order.
This is a convenience method that creates an instance of theOrderBy.Builderavoiding the need to create one manually viaOrderBy.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#orderBy(List.) - Parameters:
orderBy- a consumer that will call methods onOrderBy.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#orderBy(java.util.Collection)
-
propertyFilters
TabularConditions.Builder propertyFilters(Collection<PropertyFilter> propertyFilters)
You can filter the request using various logical operators and a key-value format. For example:
{"key": "serverType", "value": "webServer"}- Parameters:
propertyFilters- You can filter the request using various logical operators and a key-value format. For example:{"key": "serverType", "value": "webServer"}- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyFilters
TabularConditions.Builder propertyFilters(PropertyFilter... propertyFilters)
You can filter the request using various logical operators and a key-value format. For example:
{"key": "serverType", "value": "webServer"}- Parameters:
propertyFilters- You can filter the request using various logical operators and a key-value format. For example:{"key": "serverType", "value": "webServer"}- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyFilters
TabularConditions.Builder propertyFilters(Consumer<PropertyFilter.Builder>... propertyFilters)
You can filter the request using various logical operators and a key-value format. For example:
This is a convenience method that creates an instance of the{"key": "serverType", "value": "webServer"}PropertyFilter.Builderavoiding the need to create one manually viaPropertyFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#propertyFilters(List.) - Parameters:
propertyFilters- a consumer that will call methods onPropertyFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#propertyFilters(java.util.Collection)
-
-