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

.NET
Go
Java
Python
TypeScript