interface DataPathValueProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.DataPathValueProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_DataPathValueProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.DataPathValueProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.DataPathValueProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnDashboard»DataPathValueProperty | 
The data path that needs to be sorted.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const dataPathValueProperty: quicksight.CfnDashboard.DataPathValueProperty = {
  dataPathType: {
    pivotTableDataPathType: 'pivotTableDataPathType',
  },
  fieldId: 'fieldId',
  fieldValue: 'fieldValue',
};
Properties
| Name | Type | Description | 
|---|---|---|
| data | IResolvable | Data | The type configuration of the field. | 
| field | string | The field ID of the field that needs to be sorted. | 
| field | string | The actual value of the field that needs to be sorted. | 
dataPathType?
Type:
IResolvable | Data
(optional)
The type configuration of the field.
fieldId?
Type:
string
(optional)
The field ID of the field that needs to be sorted.
fieldValue?
Type:
string
(optional)
The actual value of the field that needs to be sorted.
