interface ConfiguredTableAssociationAnalysisRuleAggregationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_cleanrooms.CfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleAggregationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnConfiguredTableAssociation_ConfiguredTableAssociationAnalysisRuleAggregationProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleAggregationProperty |
Python | aws_cdk.aws_cleanrooms.CfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleAggregationProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnConfiguredTableAssociation » ConfiguredTableAssociationAnalysisRuleAggregationProperty |
The configured table association analysis rule applied to a configured table with the aggregation analysis rule.
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-lib';
const configuredTableAssociationAnalysisRuleAggregationProperty: cleanrooms.CfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleAggregationProperty = {
allowedAdditionalAnalyses: ['allowedAdditionalAnalyses'],
allowedResultReceivers: ['allowedResultReceivers'],
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string[] | The list of resources or wildcards (ARNs) that are allowed to perform additional analysis on query output. |
| allowed | string[] | The list of collaboration members who are allowed to receive results of queries run with this configured table. |
allowedAdditionalAnalyses?
Type:
string[]
(optional)
The list of resources or wildcards (ARNs) that are allowed to perform additional analysis on query output.
The allowedAdditionalAnalyses parameter is currently supported for the list analysis rule ( AnalysisRuleList ) and the custom analysis rule ( AnalysisRuleCustom ).
allowedResultReceivers?
Type:
string[]
(optional)
The list of collaboration members who are allowed to receive results of queries run with this configured table.

.NET
Go
Java
Python
TypeScript