interface AnalysisRuleListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CleanRooms.CfnConfiguredTablePropsMixin.AnalysisRuleListProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscleanrooms#CfnConfiguredTablePropsMixin_AnalysisRuleListProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.CfnConfiguredTablePropsMixin.AnalysisRuleListProperty |
Python | aws_cdk.cfn_property_mixins.aws_cleanrooms.CfnConfiguredTablePropsMixin.AnalysisRuleListProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cleanrooms » 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 { aws_cleanrooms as cleanrooms } from '@aws-cdk/cfn-property-mixins';
const analysisRuleListProperty: cleanrooms.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