Class CfnDashboardPropsMixin.BodySectionDynamicNumericDimensionConfigurationProperty
Describes the Numeric dataset column and constraints for the dynamic values used to repeat the contents of a section.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDashboardPropsMixin.BodySectionDynamicNumericDimensionConfigurationProperty : CfnDashboardPropsMixin.IBodySectionDynamicNumericDimensionConfigurationProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.BodySectionDynamicNumericDimensionConfigurationProperty Implements CfnDashboardPropsMixin.IBodySectionDynamicNumericDimensionConfigurationProperty
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 bodySectionDynamicNumericDimensionConfigurationProperty = new BodySectionDynamicNumericDimensionConfigurationProperty {
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
Limit = 123,
SortByMetrics = new [] { 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"
}
} }
};
Synopsis
Constructors
| BodySectionDynamicNumericDimensionConfigurationProperty() | Describes the Numeric dataset column and constraints for the dynamic values used to repeat the contents of a section. |
Properties
| Column | Describes the Numeric dataset column and constraints for the dynamic values used to repeat the contents of a section. |
| Limit | Number of values to use from the column for repetition. |
| SortByMetrics | Sort criteria on the column values that you use for repetition. |
Constructors
BodySectionDynamicNumericDimensionConfigurationProperty()
Describes the Numeric dataset column and constraints for the dynamic values used to repeat the contents of a section.
public BodySectionDynamicNumericDimensionConfigurationProperty()
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 bodySectionDynamicNumericDimensionConfigurationProperty = new BodySectionDynamicNumericDimensionConfigurationProperty {
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
Limit = 123,
SortByMetrics = new [] { 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"
}
} }
};
Properties
Column
Describes the Numeric dataset column and constraints for the dynamic values used to repeat the contents of a section.
public object? Column { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnDashboardPropsMixin.IColumnIdentifierProperty
Limit
Number of values to use from the column for repetition.
public double? Limit { get; set; }
Property Value
Remarks
SortByMetrics
Sort criteria on the column values that you use for repetition.
public object? SortByMetrics { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnDashboardPropsMixin.IColumnSortProperty)[]