Class CfnTemplatePropsMixin.PluginVisualTableQuerySortProperty
The table query sorting options for the plugin visual.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTemplatePropsMixin.PluginVisualTableQuerySortProperty : CfnTemplatePropsMixin.IPluginVisualTableQuerySortProperty
Syntax (vb)
Public Class CfnTemplatePropsMixin.PluginVisualTableQuerySortProperty Implements CfnTemplatePropsMixin.IPluginVisualTableQuerySortProperty
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.Mixins.Preview.AWS.QuickSight.Mixins;
var pluginVisualTableQuerySortProperty = new PluginVisualTableQuerySortProperty {
ItemsLimitConfiguration = new PluginVisualItemsLimitConfigurationProperty {
ItemsLimit = 123
},
RowSort = 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"
}
} }
};
Synopsis
Constructors
| PluginVisualTableQuerySortProperty() | The table query sorting options for the plugin visual. |
Properties
| ItemsLimitConfiguration | The maximum amount of data to be returned by a query. |
| RowSort | Determines how data is sorted in the response. |
Constructors
PluginVisualTableQuerySortProperty()
The table query sorting options for the plugin visual.
public PluginVisualTableQuerySortProperty()
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.Mixins.Preview.AWS.QuickSight.Mixins;
var pluginVisualTableQuerySortProperty = new PluginVisualTableQuerySortProperty {
ItemsLimitConfiguration = new PluginVisualItemsLimitConfigurationProperty {
ItemsLimit = 123
},
RowSort = 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"
}
} }
};
Properties
ItemsLimitConfiguration
The maximum amount of data to be returned by a query.
public object? ItemsLimitConfiguration { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnTemplatePropsMixin.IPluginVisualItemsLimitConfigurationProperty
RowSort
Determines how data is sorted in the response.
public object? RowSort { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnTemplatePropsMixin.IFieldSortOptionsProperty)[]