Interface CfnComponent.SortPropertyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnComponent.SortPropertyProperty.Jsii$Proxy
- Enclosing class:
CfnComponent
@Stability(Stable)
public static interface CfnComponent.SortPropertyProperty
extends software.amazon.jsii.JsiiSerializable
The
SortProperty property specifies how to sort the data that you bind to a component.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.amplifyuibuilder.*;
SortPropertyProperty sortPropertyProperty = SortPropertyProperty.builder()
.direction("direction")
.field("field")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnComponent.SortPropertyPropertystatic final classAn implementation forCfnComponent.SortPropertyProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDirection
The direction of the sort, either ascending or descending.- See Also:
-
getField
The field to perform the sort on.- See Also:
-
builder
-