Interface CfnConfiguredTablePropsMixin.AnalysisRuleAggregationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfiguredTablePropsMixin.AnalysisRuleAggregationProperty.Jsii$Proxy
- Enclosing class:
CfnConfiguredTablePropsMixin
@Stability(Stable)
public static interface CfnConfiguredTablePropsMixin.AnalysisRuleAggregationProperty
extends software.amazon.jsii.JsiiSerializable
A type of analysis rule that enables query structure and specified queries that produce aggregate statistics.
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.cleanrooms.mixins.*;
AnalysisRuleAggregationProperty analysisRuleAggregationProperty = AnalysisRuleAggregationProperty.builder()
.additionalAnalyses("additionalAnalyses")
.aggregateColumns(List.of(AggregateColumnProperty.builder()
.columnNames(List.of("columnNames"))
.function("function")
.build()))
.allowedJoinOperators(List.of("allowedJoinOperators"))
.dimensionColumns(List.of("dimensionColumns"))
.joinColumns(List.of("joinColumns"))
.joinRequired("joinRequired")
.outputConstraints(List.of(AggregationConstraintProperty.builder()
.columnName("columnName")
.minimum(123)
.type("type")
.build()))
.scalarFunctions(List.of("scalarFunctions"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConfiguredTablePropsMixin.AnalysisRuleAggregationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringAn indicator as to whether additional analyses (such as AWS Clean Rooms ML) can be applied to the output of the direct query.default ObjectThe columns that query runners are allowed to use in aggregation queries.Which logical operators (if any) are to be used in an INNER JOIN match condition.The columns that query runners are allowed to select, group by, or filter by.Columns in configured table that can be used in join statements and/or as aggregate columns.default StringControl that requires member who runs query to do a join with their configured table and/or other configured table in query.default ObjectColumns that must meet a specific threshold value (after an aggregation function is applied to it) for each output row to be returned.Set of scalar functions that are allowed to be used on dimension columns and the output of aggregation of metrics.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdditionalAnalyses
An indicator as to whether additional analyses (such as AWS Clean Rooms ML) can be applied to the output of the direct query.The
additionalAnalysesparameter is currently supported for the list analysis rule (AnalysisRuleList) and the custom analysis rule (AnalysisRuleCustom).- See Also:
-
getAggregateColumns
The columns that query runners are allowed to use in aggregation queries.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnConfiguredTablePropsMixin.AggregateColumnProperty>- See Also:
-
getAllowedJoinOperators
Which logical operators (if any) are to be used in an INNER JOIN match condition.Default is
AND.- See Also:
-
getDimensionColumns
The columns that query runners are allowed to select, group by, or filter by.- See Also:
-
getJoinColumns
Columns in configured table that can be used in join statements and/or as aggregate columns.They can never be outputted directly.
- See Also:
-
getJoinRequired
Control that requires member who runs query to do a join with their configured table and/or other configured table in query.- See Also:
-
getOutputConstraints
Columns that must meet a specific threshold value (after an aggregation function is applied to it) for each output row to be returned.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnConfiguredTablePropsMixin.AggregationConstraintProperty>- See Also:
-
getScalarFunctions
Set of scalar functions that are allowed to be used on dimension columns and the output of aggregation of metrics.- See Also:
-
builder
@Stability(Stable) static CfnConfiguredTablePropsMixin.AnalysisRuleAggregationProperty.Builder builder()
-