Show / Hide Table of Contents

Class CfnTopic.ComparativeOrderProperty

The order in which data is displayed for the column when it's used in a comparative context.

Inheritance
object
CfnTopic.ComparativeOrderProperty
Implements
CfnTopic.IComparativeOrderProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTopic.ComparativeOrderProperty : CfnTopic.IComparativeOrderProperty
Syntax (vb)
Public Class CfnTopic.ComparativeOrderProperty Implements CfnTopic.IComparativeOrderProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-comparativeorder.html

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

ComparativeOrderProperty()

The order in which data is displayed for the column when it's used in a comparative context.

Properties

SpecifedOrder

The list of columns to be used in the ordering.

TreatUndefinedSpecifiedValues

The treat of undefined specified values.

UseOrdering

The ordering type for a column.

Constructors

ComparativeOrderProperty()

The order in which data is displayed for the column when it's used in a comparative context.

public ComparativeOrderProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-comparativeorder.html

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"
             };

Properties

SpecifedOrder

The list of columns to be used in the ordering.

public string[]? SpecifedOrder { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-comparativeorder.html#cfn-quicksight-topic-comparativeorder-specifedorder

TreatUndefinedSpecifiedValues

The treat of undefined specified values.

public string? TreatUndefinedSpecifiedValues { get; set; }
Property Value

string

Remarks

Valid values for this structure are LEAST and MOST .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-comparativeorder.html#cfn-quicksight-topic-comparativeorder-treatundefinedspecifiedvalues

UseOrdering

The ordering type for a column.

public string? UseOrdering { get; set; }
Property Value

string

Remarks

Valid values for this structure are GREATER_IS_BETTER , LESSER_IS_BETTER and SPECIFIED .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-comparativeorder.html#cfn-quicksight-topic-comparativeorder-useordering

Implements

CfnTopic.IComparativeOrderProperty
Back to top Generated by DocFX