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 classstatic final classAn implementation forCfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRulePolicyV1Property -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectAnalysis rule type that enables only aggregation queries on a configured table.default ObjectAnalysis rule type that enables the table owner to approve custom SQL queries on their configured tables.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
IResolvableorCfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleAggregationProperty- See Also:
-
getCustom
Analysis rule type that enables the table owner to approve custom SQL queries on their configured tables.It supports differential privacy.
Returns union: either
IResolvableorCfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleCustomProperty- See Also:
-
getList
Analysis rule type that enables only list queries on a configured table.Returns union: either
IResolvableorCfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleListProperty- See Also:
-
builder
@Stability(Stable) static CfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRulePolicyV1Property.Builder builder()
-