Interface CfnConfiguredTablePropsMixin.AnalysisRuleListProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfiguredTablePropsMixin.AnalysisRuleListProperty.Jsii$Proxy
- Enclosing class:
CfnConfiguredTablePropsMixin
@Stability(Stable)
public static interface CfnConfiguredTablePropsMixin.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.cfnpropertymixins.services.cleanrooms.*;
AnalysisRuleListProperty analysisRuleListProperty = AnalysisRuleListProperty.builder()
.additionalAnalyses("additionalAnalyses")
.allowedJoinOperators(List.of("allowedJoinOperators"))
.joinColumns(List.of("joinColumns"))
.listColumns(List.of("listColumns"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfiguredTablePropsMixin.AnalysisRuleListPropertystatic final classAn implementation forCfnConfiguredTablePropsMixin.AnalysisRuleListProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringAn indicator as to whether additional analyses (such as AWS Clean Rooms ML) can be applied to the output of the direct query.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
-
getAdditionalAnalyses
An indicator as to whether additional analyses (such as AWS Clean Rooms ML) can be applied to the output of the direct query.- See Also:
-
getAllowedJoinOperators
The logical operators (if any) that are to be used in an INNER JOIN match condition.Default is
AND.- See Also:
-
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:
-
builder
-