Class CfnTopic.ComparativeOrderProperty
The order in which data is displayed for the column when it's used in a comparative context.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ComparativeOrderProperty : Object, CfnTopic.IComparativeOrderProperty
Syntax (vb)
Public Class ComparativeOrderProperty
Inherits Object
Implements CfnTopic.IComparativeOrderProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var comparativeOrderProperty = new ComparativeOrderProperty {
SpecifedOrder = new [] { "specifedOrder" },
TreatUndefinedSpecifiedValues = "treatUndefinedSpecifiedValues",
UseOrdering = "useOrdering"
};
Synopsis
Constructors
Comparative |
Properties
Specifed |
The list of columns to be used in the ordering. |
Treat |
The treat of undefined specified values. |
Use |
The ordering type for a column. |
Constructors
ComparativeOrderProperty()
public ComparativeOrderProperty()
Properties
SpecifedOrder
The list of columns to be used in the ordering.
public string[] SpecifedOrder { get; set; }
Property Value
System.
Remarks
TreatUndefinedSpecifiedValues
The treat of undefined specified values.
public string TreatUndefinedSpecifiedValues { get; set; }
Property Value
System.
Remarks
Valid values for this structure are LEAST
and MOST
.
UseOrdering
The ordering type for a column.
public string UseOrdering { get; set; }
Property Value
System.
Remarks
Valid values for this structure are GREATER_IS_BETTER
, LESSER_IS_BETTER
and SPECIFIED
.