interface FieldSortProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.FieldSortProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.FieldSortProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.FieldSortProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnAnalysis » FieldSortProperty |
The sort configuration for a field in a field well.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const fieldSortProperty: quicksight.CfnAnalysis.FieldSortProperty = {
direction: 'direction',
fieldId: 'fieldId',
};
Properties
| Name | Type | Description |
|---|---|---|
| direction | string | The sort direction. Choose one of the following options:. |
| field | string | The sort configuration target field. |
direction
Type:
string
The sort direction. Choose one of the following options:.
ASC: AscendingDESC: Descending
fieldId
Type:
string
The sort configuration target field.

.NET
Java
Python
TypeScript