Interface CfnComponent.ISortPropertyProperty
The SortProperty property specifies how to sort the data that you bind to a component.
Namespace: Amazon.CDK.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.AWS.AmplifyUIBuilder.dll
Syntax (csharp)
public interface ISortPropertyProperty
Syntax (vb)
Public Interface ISortPropertyProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AmplifyUIBuilder;
var sortPropertyProperty = new SortPropertyProperty {
Direction = "direction",
Field = "field"
};
Synopsis
Properties
| Direction | The direction of the sort, either ascending or descending. |
| Field | The field to perform the sort on. |
Properties
Direction
The direction of the sort, either ascending or descending.
string Direction { get; }
Property Value
System.String
Remarks
Field
The field to perform the sort on.
string Field { get; }
Property Value
System.String