Show / Hide Table of Contents

Interface CfnAnalysisPropsMixin.IDataPathSortProperty

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

Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnAnalysisPropsMixin.IDataPathSortProperty
Syntax (vb)
Public Interface CfnAnalysisPropsMixin.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.Mixins.Preview.AWS.QuickSight.Mixins;

             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-analysis-datapathsort.html#cfn-quicksight-analysis-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-analysis-datapathsort.html#cfn-quicksight-analysis-datapathsort-sortpaths

Type union: either IResolvable or (either IResolvable or CfnAnalysisPropsMixin.IDataPathValueProperty)[]

Back to top Generated by DocFX