Interface CfnConfiguredTablePropsMixin.ConfiguredTableAnalysisRulePolicyV1Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfiguredTablePropsMixin.ConfiguredTableAnalysisRulePolicyV1Property.Jsii$Proxy
- Enclosing class:
CfnConfiguredTablePropsMixin
@Stability(Stable)
public static interface CfnConfiguredTablePropsMixin.ConfiguredTableAnalysisRulePolicyV1Property
extends software.amazon.jsii.JsiiSerializable
Controls on the query specifications that can be run on a configured table.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.*;
ConfiguredTableAnalysisRulePolicyV1Property configuredTableAnalysisRulePolicyV1Property = ConfiguredTableAnalysisRulePolicyV1Property.builder()
.aggregation(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())
.custom(AnalysisRuleCustomProperty.builder()
.additionalAnalyses("additionalAnalyses")
.allowedAnalyses(List.of("allowedAnalyses"))
.allowedAnalysisProviders(List.of("allowedAnalysisProviders"))
.differentialPrivacy(DifferentialPrivacyProperty.builder()
.columns(List.of(DifferentialPrivacyColumnProperty.builder()
.name("name")
.build()))
.build())
.disallowedOutputColumns(List.of("disallowedOutputColumns"))
.build())
.list(AnalysisRuleListProperty.builder()
.additionalAnalyses("additionalAnalyses")
.allowedJoinOperators(List.of("allowedJoinOperators"))
.joinColumns(List.of("joinColumns"))
.listColumns(List.of("listColumns"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConfiguredTablePropsMixin.ConfiguredTableAnalysisRulePolicyV1Property -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectAnalysis rule type that enables only aggregation queries on a configured table.default ObjectAnalysis rule type that enables custom SQL queries on a configured table.default ObjectgetList()Analysis rule type that enables only list queries on a configured table.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAggregation
Analysis rule type that enables only aggregation queries on a configured table.Returns union: either
IResolvableorCfnConfiguredTablePropsMixin.AnalysisRuleAggregationProperty- See Also:
-
getCustom
Analysis rule type that enables custom SQL queries on a configured table.Returns union: either
IResolvableorCfnConfiguredTablePropsMixin.AnalysisRuleCustomProperty- See Also:
-
getList
Analysis rule type that enables only list queries on a configured table.Returns union: either
IResolvableorCfnConfiguredTablePropsMixin.AnalysisRuleListProperty- See Also:
-
builder
@Stability(Stable) static CfnConfiguredTablePropsMixin.ConfiguredTableAnalysisRulePolicyV1Property.Builder builder()
-