interface ComparativeOrderProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTopic.ComparativeOrderProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTopic_ComparativeOrderProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTopic.ComparativeOrderProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTopic.ComparativeOrderProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnTopic»ComparativeOrderProperty | 
The order in which data is displayed for the column when it's used in a comparative context.
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 comparativeOrderProperty: quicksight.CfnTopic.ComparativeOrderProperty = {
  specifedOrder: ['specifedOrder'],
  treatUndefinedSpecifiedValues: 'treatUndefinedSpecifiedValues',
  useOrdering: 'useOrdering',
};
Properties
| Name | Type | Description | 
|---|---|---|
| specifed | string[] | The list of columns to be used in the ordering. | 
| treat | string | The treat of undefined specified values. | 
| use | string | The ordering type for a column. | 
specifedOrder?
Type:
string[]
(optional)
The list of columns to be used in the ordering.
treatUndefinedSpecifiedValues?
Type:
string
(optional)
The treat of undefined specified values.
Valid values for this structure are LEAST and MOST .
useOrdering?
Type:
string
(optional)
The ordering type for a column.
Valid values for this structure are GREATER_IS_BETTER , LESSER_IS_BETTER and SPECIFIED .
