Package services.cleanrooms
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 services.cleanrooms.*;
AnalysisRuleListProperty analysisRuleListProperty = AnalysisRuleListProperty.builder()
.joinColumns(List.of("joinColumns"))
.listColumns(List.of("listColumns"))
// the properties below are optional
.allowedJoinOperators(List.of("allowedJoinOperators"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfiguredTable.AnalysisRuleListPropertystatic final classAn implementation forCfnConfiguredTable.AnalysisRuleListProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The logical operators (if any) that are to be used in an INNER JOIN match condition.Columns that can be used to join a configured table with the table of the member who can query and other members' configured tables.Columns that can be listed in the output.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getJoinColumns
Columns that can be used to join a configured table with the table of the member who can query and other members' configured tables.- See Also:
-
getListColumns
Columns that can be listed in the output.- See Also:
-
getAllowedJoinOperators
The logical operators (if any) that are to be used in an INNER JOIN match condition.Default is
AND.- See Also:
-
builder
-