Show / Hide Table of Contents

Class CfnAnalysis.PluginVisualSortConfigurationProperty

Determines how the plugin visual sorts the data during query.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualsortconfiguration.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 pluginVisualSortConfigurationProperty = new PluginVisualSortConfigurationProperty {
                 PluginVisualTableQuerySort = new PluginVisualTableQuerySortProperty {
                     ItemsLimitConfiguration = new PluginVisualItemsLimitConfigurationProperty {
                         ItemsLimit = 123
                     },
                     RowSort = new [] { 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

PluginVisualSortConfigurationProperty()

Determines how the plugin visual sorts the data during query.

Properties

PluginVisualTableQuerySort

The table query sorting options for the plugin visual.

Constructors

PluginVisualSortConfigurationProperty()

Determines how the plugin visual sorts the data during query.

public PluginVisualSortConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-pluginvisualsortconfiguration.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 pluginVisualSortConfigurationProperty = new PluginVisualSortConfigurationProperty {
                 PluginVisualTableQuerySort = new PluginVisualTableQuerySortProperty {
                     ItemsLimitConfiguration = new PluginVisualItemsLimitConfigurationProperty {
                         ItemsLimit = 123
                     },
                     RowSort = new [] { 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

PluginVisualTableQuerySort

The table query sorting options for the plugin visual.

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

object

Remarks

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

Implements

CfnAnalysis.IPluginVisualSortConfigurationProperty
Back to top Generated by DocFX