interface DataPathValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.DataPathValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_DataPathValueProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.DataPathValueProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.DataPathValueProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const dataPathValueProperty: quicksight_mixins.CfnAnalysisPropsMixin.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.

.NET
Go
Java
Python
TypeScript