Show / Hide Table of Contents

Interface CfnTemplate.IDataPathSortProperty

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

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTemplate.IDataPathSortProperty
Syntax (vb)
Public Interface CfnTemplate.IDataPathSortProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-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

Properties

Direction

Determines the sort direction.

SortPaths

The list of data paths that need to be sorted.

Properties

Direction

Determines the sort direction.

string Direction { get; }
Property Value

string

Remarks

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

SortPaths

The list of data paths that need to be sorted.

object SortPaths { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX