Show / Hide Table of Contents

Class CfnAnalysisPropsMixin.AggregationSortConfigurationProperty

The configuration options to sort aggregated values.

Inheritance
object
CfnAnalysisPropsMixin.AggregationSortConfigurationProperty
Implements
CfnAnalysisPropsMixin.IAggregationSortConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.AggregationSortConfigurationProperty : CfnAnalysisPropsMixin.IAggregationSortConfigurationProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.AggregationSortConfigurationProperty Implements CfnAnalysisPropsMixin.IAggregationSortConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-aggregationsortconfiguration.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 aggregationSortConfigurationProperty = new AggregationSortConfigurationProperty {
                 AggregationFunction = new AggregationFunctionProperty {
                     AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
                         SimpleAttributeAggregation = "simpleAttributeAggregation",
                         ValueForMultipleValues = "valueForMultipleValues"
                     },
                     CategoricalAggregationFunction = "categoricalAggregationFunction",
                     DateAggregationFunction = "dateAggregationFunction",
                     NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                         PercentileAggregation = new PercentileAggregationProperty {
                             PercentileValue = 123
                         },
                         SimpleNumericalAggregation = "simpleNumericalAggregation"
                     }
                 },
                 Column = new ColumnIdentifierProperty {
                     ColumnName = "columnName",
                     DataSetIdentifier = "dataSetIdentifier"
                 },
                 SortDirection = "sortDirection"
             };

Synopsis

Constructors

AggregationSortConfigurationProperty()

The configuration options to sort aggregated values.

Properties

AggregationFunction

The function that aggregates the values in Column .

Column

The column that determines the sort order of aggregated values.

SortDirection

The sort direction of values.

Constructors

AggregationSortConfigurationProperty()

The configuration options to sort aggregated values.

public AggregationSortConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-aggregationsortconfiguration.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 aggregationSortConfigurationProperty = new AggregationSortConfigurationProperty {
                 AggregationFunction = new AggregationFunctionProperty {
                     AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
                         SimpleAttributeAggregation = "simpleAttributeAggregation",
                         ValueForMultipleValues = "valueForMultipleValues"
                     },
                     CategoricalAggregationFunction = "categoricalAggregationFunction",
                     DateAggregationFunction = "dateAggregationFunction",
                     NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                         PercentileAggregation = new PercentileAggregationProperty {
                             PercentileValue = 123
                         },
                         SimpleNumericalAggregation = "simpleNumericalAggregation"
                     }
                 },
                 Column = new ColumnIdentifierProperty {
                     ColumnName = "columnName",
                     DataSetIdentifier = "dataSetIdentifier"
                 },
                 SortDirection = "sortDirection"
             };

Properties

AggregationFunction

The function that aggregates the values in Column .

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

object

Remarks

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

Type union: either IResolvable or CfnAnalysisPropsMixin.IAggregationFunctionProperty

Column

The column that determines the sort order of aggregated values.

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

object

Remarks

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

Type union: either IResolvable or CfnAnalysisPropsMixin.IColumnIdentifierProperty

SortDirection

The sort direction of values.

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

string

Remarks

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

    Implements

    CfnAnalysisPropsMixin.IAggregationSortConfigurationProperty
    Back to top Generated by DocFX