Class CfnAnalysisPropsMixin.BoxPlotSortConfigurationProperty
The sort configuration of a BoxPlotVisual .
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.BoxPlotSortConfigurationProperty : CfnAnalysisPropsMixin.IBoxPlotSortConfigurationProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.BoxPlotSortConfigurationProperty Implements CfnAnalysisPropsMixin.IBoxPlotSortConfigurationProperty
Remarks
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
Constructors
| BoxPlotSortConfigurationProperty() | The sort configuration of a |
Properties
| CategorySort | The sort configuration of a group by fields. |
| PaginationConfiguration | The pagination configuration of a table visual or box plot. |
Constructors
BoxPlotSortConfigurationProperty()
The sort configuration of a BoxPlotVisual .
public BoxPlotSortConfigurationProperty()
Remarks
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
}
};
Properties
CategorySort
The sort configuration of a group by fields.
public object? CategorySort { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnAnalysisPropsMixin.IFieldSortOptionsProperty)[]
PaginationConfiguration
The pagination configuration of a table visual or box plot.
public object? PaginationConfiguration { get; set; }