interface AnalysisRuleCustomProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnConfiguredTablePropsMixin.AnalysisRuleCustomProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnConfiguredTablePropsMixin_AnalysisRuleCustomProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnConfiguredTablePropsMixin.AnalysisRuleCustomProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnConfiguredTablePropsMixin.AnalysisRuleCustomProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnConfiguredTablePropsMixin » 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 { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const analysisRuleCustomProperty: cleanrooms_mixins.CfnConfiguredTablePropsMixin.AnalysisRuleCustomProperty = {
additionalAnalyses: 'additionalAnalyses',
allowedAnalyses: ['allowedAnalyses'],
allowedAnalysisProviders: ['allowedAnalysisProviders'],
differentialPrivacy: {
columns: [{
name: 'name',
}],
},
disallowedOutputColumns: ['disallowedOutputColumns'],
};
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 ARN of the analysis templates that are allowed by the custom analysis rule. |
| 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. |
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.
allowedAnalyses?
Type:
string[]
(optional)
The ARN of the analysis templates that are allowed by the custom analysis rule.
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