Interface CfnConfiguredTable.AnalysisRuleListProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfiguredTable.AnalysisRuleListProperty.Jsii$Proxy
Enclosing class:
CfnConfiguredTable

@Stability(Stable) public static interface CfnConfiguredTable.AnalysisRuleListProperty extends software.amazon.jsii.JsiiSerializable
A type of analysis rule that enables row-level analysis.

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.*;
 AnalysisRuleListProperty analysisRuleListProperty = AnalysisRuleListProperty.builder()
         .joinColumns(List.of("joinColumns"))
         .listColumns(List.of("listColumns"))
         // the properties below are optional
         .additionalAnalyses("additionalAnalyses")
         .allowedJoinOperators(List.of("allowedJoinOperators"))
         .build();
 

See Also: