Interface CfnDashboard.BodySectionDynamicCategoryDimensionConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.BodySectionDynamicCategoryDimensionConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.BodySectionDynamicCategoryDimensionConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Describes the Category dataset column and constraints for the dynamic values used to repeat the contents of a section.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
BodySectionDynamicCategoryDimensionConfigurationProperty bodySectionDynamicCategoryDimensionConfigurationProperty = BodySectionDynamicCategoryDimensionConfigurationProperty.builder()
.column(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
// the properties below are optional
.limit(123)
.sortByMetrics(List.of(ColumnSortProperty.builder()
.direction("direction")
.sortBy(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
// the properties below are optional
.aggregationFunction(AggregationFunctionProperty.builder()
.attributeAggregationFunction(AttributeAggregationFunctionProperty.builder()
.simpleAttributeAggregation("simpleAttributeAggregation")
.valueForMultipleValues("valueForMultipleValues")
.build())
.categoricalAggregationFunction("categoricalAggregationFunction")
.dateAggregationFunction("dateAggregationFunction")
.numericalAggregationFunction(NumericalAggregationFunctionProperty.builder()
.percentileAggregation(PercentileAggregationProperty.builder()
.percentileValue(123)
.build())
.simpleNumericalAggregation("simpleNumericalAggregation")
.build())
.build())
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDashboard.BodySectionDynamicCategoryDimensionConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Returns union: eitherIResolvableorCfnDashboard.ColumnIdentifierPropertydefault NumbergetLimit()Number of values to use from the column for repetition.default ObjectSort criteria on the column values that you use for repetition.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumn
Returns union: eitherIResolvableorCfnDashboard.ColumnIdentifierProperty- See Also:
-
getLimit
Number of values to use from the column for repetition.- See Also:
-
getSortByMetrics
Sort criteria on the column values that you use for repetition.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboard.ColumnSortProperty>- See Also:
-
builder
@Stability(Stable) static CfnDashboard.BodySectionDynamicCategoryDimensionConfigurationProperty.Builder builder()
-