interface AnalysisRuleListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnConfiguredTablePropsMixin.AnalysisRuleListProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnConfiguredTablePropsMixin_AnalysisRuleListProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnConfiguredTablePropsMixin.AnalysisRuleListProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnConfiguredTablePropsMixin.AnalysisRuleListProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnConfiguredTablePropsMixin » AnalysisRuleListProperty |
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 { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const analysisRuleListProperty: cleanrooms_mixins.CfnConfiguredTablePropsMixin.AnalysisRuleListProperty = {
additionalAnalyses: 'additionalAnalyses',
allowedJoinOperators: ['allowedJoinOperators'],
joinColumns: ['joinColumns'],
listColumns: ['listColumns'],
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | string | An indicator as to whether additional analyses (such as AWS Clean Rooms ML) can be applied to the output of the direct query. |
| allowed | string[] | The logical operators (if any) that are to be used in an INNER JOIN match condition. |
| join | string[] | Columns that can be used to join a configured table with the table of the member who can query and other members' configured tables. |
| list | string[] | Columns that can be listed in the output. |
additionalAnalyses?
Type:
string
(optional)
An indicator as to whether additional analyses (such as AWS Clean Rooms ML) can be applied to the output of the direct query.
allowedJoinOperators?
Type:
string[]
(optional)
The logical operators (if any) that are to be used in an INNER JOIN match condition.
Default is AND .
joinColumns?
Type:
string[]
(optional)
Columns that can be used to join a configured table with the table of the member who can query and other members' configured tables.
listColumns?
Type:
string[]
(optional)
Columns that can be listed in the output.

.NET
Go
Java
Python
TypeScript