Interface CfnTemplate.BodySectionRepeatConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.BodySectionRepeatConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.BodySectionRepeatConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Describes the configurations that are required to declare a section as repeating.
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.*;
BodySectionRepeatConfigurationProperty bodySectionRepeatConfigurationProperty = BodySectionRepeatConfigurationProperty.builder()
.dimensionConfigurations(List.of(BodySectionRepeatDimensionConfigurationProperty.builder()
.dynamicCategoryDimensionConfiguration(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())
.dynamicNumericDimensionConfiguration(BodySectionDynamicNumericDimensionConfigurationProperty.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())
.build()))
.nonRepeatingVisuals(List.of("nonRepeatingVisuals"))
.pageBreakConfiguration(BodySectionRepeatPageBreakConfigurationProperty.builder()
.after(SectionAfterPageBreakProperty.builder()
.status("status")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.BodySectionRepeatConfigurationPropertystatic final classAn implementation forCfnTemplate.BodySectionRepeatConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectList ofBodySectionRepeatDimensionConfigurationvalues that describe the dataset column and constraints for the column used to repeat the contents of a section.List of visuals to exclude from repetition in repeating sections.default ObjectPage break configuration to apply for each repeating instance.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDimensionConfigurations
List ofBodySectionRepeatDimensionConfigurationvalues that describe the dataset column and constraints for the column used to repeat the contents of a section.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnTemplate.BodySectionRepeatDimensionConfigurationProperty>- See Also:
-
getNonRepeatingVisuals
List of visuals to exclude from repetition in repeating sections.The visuals will render identically, and ignore the repeating configurations in all repeating instances.
- See Also:
-
getPageBreakConfiguration
Page break configuration to apply for each repeating instance.Returns union: either
IResolvableorCfnTemplate.BodySectionRepeatPageBreakConfigurationProperty- See Also:
-
builder
-