interface FieldSortProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.FieldSortProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_FieldSortProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.FieldSortProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.FieldSortProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const fieldSortProperty: quicksight_mixins.CfnDashboardPropsMixin.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
(optional)
The sort direction. Choose one of the following options:.
ASC: AscendingDESC: Descending
fieldId?
Type:
string
(optional)
The sort configuration target field.

.NET
Go
Java
Python
TypeScript