interface AnalysisRuleCustomProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRooms.CfnConfiguredTable.AnalysisRuleCustomProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnConfiguredTable_AnalysisRuleCustomProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnConfiguredTable.AnalysisRuleCustomProperty |
Python | aws_cdk.aws_cleanrooms.CfnConfiguredTable.AnalysisRuleCustomProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnConfiguredTable » AnalysisRuleCustomProperty |
A type of analysis rule that enables the table owner to approve custom SQL queries on their configured tables.
It supports differential privacy.
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 analysisRuleCustomProperty: cleanrooms.CfnConfiguredTable.AnalysisRuleCustomProperty = {
allowedAnalyses: ['allowedAnalyses'],
// the properties below are optional
additionalAnalyses: 'additionalAnalyses',
allowedAnalysisProviders: ['allowedAnalysisProviders'],
differentialPrivacy: {
columns: [{
name: 'name',
}],
},
disallowedOutputColumns: ['disallowedOutputColumns'],
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string[] | The ARN of the analysis templates that are allowed by the custom analysis rule. |
| 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 IDs of the AWS accounts that are allowed to query by the custom analysis rule. |
| differential | IResolvable | Differential | The differential privacy configuration. |
| disallowed | string[] | A list of columns that aren't allowed to be shown in the query output. |
allowedAnalyses
Type:
string[]
The ARN of the analysis templates that are allowed by the custom analysis rule.
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.
allowedAnalysisProviders?
Type:
string[]
(optional)
The IDs of the AWS accounts that are allowed to query by the custom analysis rule.
Required when allowedAnalyses is ANY_QUERY .
differentialPrivacy?
Type:
IResolvable | Differential
(optional)
The differential privacy configuration.
disallowedOutputColumns?
Type:
string[]
(optional)
A list of columns that aren't allowed to be shown in the query output.

.NET
Go
Java
Python
TypeScript