Show / Hide Table of Contents

Class CfnTemplate.FieldSortOptionsProperty

The field sort options in a chart configuration.

Inheritance
object
CfnTemplate.FieldSortOptionsProperty
Implements
CfnTemplate.IFieldSortOptionsProperty
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 CfnTemplate.FieldSortOptionsProperty : CfnTemplate.IFieldSortOptionsProperty
Syntax (vb)
Public Class CfnTemplate.FieldSortOptionsProperty Implements CfnTemplate.IFieldSortOptionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-fieldsortoptions.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 fieldSortOptionsProperty = new FieldSortOptionsProperty {
                 ColumnSort = new ColumnSortProperty {
                     Direction = "direction",
                     SortBy = new ColumnIdentifierProperty {
                         ColumnName = "columnName",
                         DataSetIdentifier = "dataSetIdentifier"
                     },

                     // the properties below are optional
                     AggregationFunction = new AggregationFunctionProperty {
                         AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
                             SimpleAttributeAggregation = "simpleAttributeAggregation",
                             ValueForMultipleValues = "valueForMultipleValues"
                         },
                         CategoricalAggregationFunction = "categoricalAggregationFunction",
                         DateAggregationFunction = "dateAggregationFunction",
                         NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                             PercentileAggregation = new PercentileAggregationProperty {
                                 PercentileValue = 123
                             },
                             SimpleNumericalAggregation = "simpleNumericalAggregation"
                         }
                     }
                 },
                 FieldSort = new FieldSortProperty {
                     Direction = "direction",
                     FieldId = "fieldId"
                 }
             };

Synopsis

Constructors

FieldSortOptionsProperty()

The field sort options in a chart configuration.

Properties

ColumnSort

The sort configuration for a column that is not used in a field well.

FieldSort

The sort configuration for a field in a field well.

Constructors

FieldSortOptionsProperty()

The field sort options in a chart configuration.

public FieldSortOptionsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-fieldsortoptions.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 fieldSortOptionsProperty = new FieldSortOptionsProperty {
                 ColumnSort = new ColumnSortProperty {
                     Direction = "direction",
                     SortBy = new ColumnIdentifierProperty {
                         ColumnName = "columnName",
                         DataSetIdentifier = "dataSetIdentifier"
                     },

                     // the properties below are optional
                     AggregationFunction = new AggregationFunctionProperty {
                         AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
                             SimpleAttributeAggregation = "simpleAttributeAggregation",
                             ValueForMultipleValues = "valueForMultipleValues"
                         },
                         CategoricalAggregationFunction = "categoricalAggregationFunction",
                         DateAggregationFunction = "dateAggregationFunction",
                         NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                             PercentileAggregation = new PercentileAggregationProperty {
                                 PercentileValue = 123
                             },
                             SimpleNumericalAggregation = "simpleNumericalAggregation"
                         }
                     }
                 },
                 FieldSort = new FieldSortProperty {
                     Direction = "direction",
                     FieldId = "fieldId"
                 }
             };

Properties

ColumnSort

The sort configuration for a column that is not used in a field well.

public object? ColumnSort { get; set; }
Property Value

object

Remarks

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

FieldSort

The sort configuration for a field in a field well.

public object? FieldSort { get; set; }
Property Value

object

Remarks

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

Implements

CfnTemplate.IFieldSortOptionsProperty
Back to top Generated by DocFX