Interface CfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRulePolicyV1Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRulePolicyV1Property.Jsii$Proxy
- Enclosing class:
CfnConfiguredTableAssociation
@Stability(Stable)
public static interface CfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRulePolicyV1Property
extends software.amazon.jsii.JsiiSerializable
Controls on the query specifications that can be run on an associated 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.services.cleanrooms.*; ConfiguredTableAssociationAnalysisRulePolicyV1Property configuredTableAssociationAnalysisRulePolicyV1Property = ConfiguredTableAssociationAnalysisRulePolicyV1Property.builder() .aggregation(ConfiguredTableAssociationAnalysisRuleAggregationProperty.builder() .allowedAdditionalAnalyses(List.of("allowedAdditionalAnalyses")) .allowedResultReceivers(List.of("allowedResultReceivers")) .build()) .custom(ConfiguredTableAssociationAnalysisRuleCustomProperty.builder() .allowedAdditionalAnalyses(List.of("allowedAdditionalAnalyses")) .allowedResultReceivers(List.of("allowedResultReceivers")) .build()) .list(ConfiguredTableAssociationAnalysisRuleListProperty.builder() .allowedAdditionalAnalyses(List.of("allowedAdditionalAnalyses")) .allowedResultReceivers(List.of("allowedResultReceivers")) .build()) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRulePolicyV1Property
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Analysis rule type that enables only aggregation queries on a configured table.default Object
Analysis rule type that enables the table owner to approve custom SQL queries on their configured tables.default Object
getList()
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.- See Also:
-
getCustom
Analysis rule type that enables the table owner to approve custom SQL queries on their configured tables.It supports differential privacy.
- See Also:
-
getList
Analysis rule type that enables only list queries on a configured table.- See Also:
-
builder
@Stability(Stable) static CfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRulePolicyV1Property.Builder builder()
-