Show / Hide Table of Contents

Interface CfnTemplatePropsMixin.IBoxPlotSortConfigurationProperty

The sort configuration of a BoxPlotVisual .

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnTemplatePropsMixin.IBoxPlotSortConfigurationProperty
Syntax (vb)
Public Interface CfnTemplatePropsMixin.IBoxPlotSortConfigurationProperty
Remarks

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

             var boxPlotSortConfigurationProperty = new BoxPlotSortConfigurationProperty {
                 CategorySort = new [] { new FieldSortOptionsProperty {
                     ColumnSort = new ColumnSortProperty {
                         AggregationFunction = new AggregationFunctionProperty {
                             AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
                                 SimpleAttributeAggregation = "simpleAttributeAggregation",
                                 ValueForMultipleValues = "valueForMultipleValues"
                             },
                             CategoricalAggregationFunction = "categoricalAggregationFunction",
                             DateAggregationFunction = "dateAggregationFunction",
                             NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                                 PercentileAggregation = new PercentileAggregationProperty {
                                     PercentileValue = 123
                                 },
                                 SimpleNumericalAggregation = "simpleNumericalAggregation"
                             }
                         },
                         Direction = "direction",
                         SortBy = new ColumnIdentifierProperty {
                             ColumnName = "columnName",
                             DataSetIdentifier = "dataSetIdentifier"
                         }
                     },
                     FieldSort = new FieldSortProperty {
                         Direction = "direction",
                         FieldId = "fieldId"
                     }
                 } },
                 PaginationConfiguration = new PaginationConfigurationProperty {
                     PageNumber = 123,
                     PageSize = 123
                 }
             };

Synopsis

Properties

CategorySort

The sort configuration of a group by fields.

PaginationConfiguration

The pagination configuration of a table visual or box plot.

Properties

CategorySort

The sort configuration of a group by fields.

object? CategorySort { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnTemplatePropsMixin.IFieldSortOptionsProperty)[]

PaginationConfiguration

The pagination configuration of a table visual or box plot.

object? PaginationConfiguration { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnTemplatePropsMixin.IPaginationConfigurationProperty

Back to top Generated by DocFX