Show / Hide Table of Contents

Class CfnAnalysis.DataPathSortProperty

Allows data paths to be sorted by a specific data value.

Inheritance
object
CfnAnalysis.DataPathSortProperty
Implements
CfnAnalysis.IDataPathSortProperty
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 CfnAnalysis.DataPathSortProperty : CfnAnalysis.IDataPathSortProperty
Syntax (vb)
Public Class CfnAnalysis.DataPathSortProperty Implements CfnAnalysis.IDataPathSortProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datapathsort.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 dataPathSortProperty = new DataPathSortProperty {
                 Direction = "direction",
                 SortPaths = new [] { new DataPathValueProperty {
                     DataPathType = new DataPathTypeProperty {
                         PivotTableDataPathType = "pivotTableDataPathType"
                     },
                     FieldId = "fieldId",
                     FieldValue = "fieldValue"
                 } }
             };

Synopsis

Constructors

DataPathSortProperty()

Allows data paths to be sorted by a specific data value.

Properties

Direction

Determines the sort direction.

SortPaths

The list of data paths that need to be sorted.

Constructors

DataPathSortProperty()

Allows data paths to be sorted by a specific data value.

public DataPathSortProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datapathsort.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 dataPathSortProperty = new DataPathSortProperty {
                 Direction = "direction",
                 SortPaths = new [] { new DataPathValueProperty {
                     DataPathType = new DataPathTypeProperty {
                         PivotTableDataPathType = "pivotTableDataPathType"
                     },
                     FieldId = "fieldId",
                     FieldValue = "fieldValue"
                 } }
             };

Properties

Direction

Determines the sort direction.

public string Direction { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datapathsort.html#cfn-quicksight-analysis-datapathsort-direction

SortPaths

The list of data paths that need to be sorted.

public object SortPaths { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datapathsort.html#cfn-quicksight-analysis-datapathsort-sortpaths

Implements

CfnAnalysis.IDataPathSortProperty
Back to top Generated by DocFX