Interface CfnAnalysisPropsMixin.BodySectionRepeatConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysisPropsMixin.BodySectionRepeatConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysisPropsMixin
@Stability(Stable)
public static interface CfnAnalysisPropsMixin.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.mixins.preview.services.quicksight.mixins.*;
BodySectionRepeatConfigurationProperty bodySectionRepeatConfigurationProperty = BodySectionRepeatConfigurationProperty.builder()
.dimensionConfigurations(List.of(BodySectionRepeatDimensionConfigurationProperty.builder()
.dynamicCategoryDimensionConfiguration(BodySectionDynamicCategoryDimensionConfigurationProperty.builder()
.column(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.limit(123)
.sortByMetrics(List.of(ColumnSortProperty.builder()
.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())
.direction("direction")
.sortBy(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.build()))
.build())
.dynamicNumericDimensionConfiguration(BodySectionDynamicNumericDimensionConfigurationProperty.builder()
.column(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.limit(123)
.sortByMetrics(List.of(ColumnSortProperty.builder()
.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())
.direction("direction")
.sortBy(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.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 classstatic final classAn implementation forCfnAnalysisPropsMixin.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: '<'eitherIResolvableorCfnAnalysisPropsMixin.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
IResolvableorCfnAnalysisPropsMixin.BodySectionRepeatPageBreakConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnAnalysisPropsMixin.BodySectionRepeatConfigurationProperty.Builder builder()
-