Class CfnConfiguredTable.AnalysisRuleCustomProperty
A type of analysis rule that enables the table owner to approve custom SQL queries on their configured tables.
Implements
Inherited Members
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConfiguredTable.AnalysisRuleCustomProperty : CfnConfiguredTable.IAnalysisRuleCustomProperty
Syntax (vb)
Public Class CfnConfiguredTable.AnalysisRuleCustomProperty Implements CfnConfiguredTable.IAnalysisRuleCustomProperty
Remarks
It supports differential privacy.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_cleanrooms;
var analysisRuleCustomProperty = new AnalysisRuleCustomProperty {
AllowedAnalyses = new [] { "allowedAnalyses" },
// the properties below are optional
AdditionalAnalyses = "additionalAnalyses",
AllowedAnalysisProviders = new [] { "allowedAnalysisProviders" },
DifferentialPrivacy = new DifferentialPrivacyProperty {
Columns = new [] { new DifferentialPrivacyColumnProperty {
Name = "name"
} }
},
DisallowedOutputColumns = new [] { "disallowedOutputColumns" }
};
Synopsis
Constructors
AnalysisRuleCustomProperty() | A type of analysis rule that enables the table owner to approve custom SQL queries on their configured tables. |
Properties
AdditionalAnalyses | An indicator as to whether additional analyses (such as AWS Clean Rooms ML) can be applied to the output of the direct query. |
AllowedAnalyses | The ARN of the analysis templates that are allowed by the custom analysis rule. |
AllowedAnalysisProviders | The IDs of the AWS accounts that are allowed to query by the custom analysis rule. |
DifferentialPrivacy | The differential privacy configuration. |
DisallowedOutputColumns | A list of columns that aren't allowed to be shown in the query output. |
Constructors
AnalysisRuleCustomProperty()
A type of analysis rule that enables the table owner to approve custom SQL queries on their configured tables.
public AnalysisRuleCustomProperty()
Remarks
It supports differential privacy.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_cleanrooms;
var analysisRuleCustomProperty = new AnalysisRuleCustomProperty {
AllowedAnalyses = new [] { "allowedAnalyses" },
// the properties below are optional
AdditionalAnalyses = "additionalAnalyses",
AllowedAnalysisProviders = new [] { "allowedAnalysisProviders" },
DifferentialPrivacy = new DifferentialPrivacyProperty {
Columns = new [] { new DifferentialPrivacyColumnProperty {
Name = "name"
} }
},
DisallowedOutputColumns = new [] { "disallowedOutputColumns" }
};
Properties
AdditionalAnalyses
An indicator as to whether additional analyses (such as AWS Clean Rooms ML) can be applied to the output of the direct query.
public string? AdditionalAnalyses { get; set; }
Property Value
Remarks
AllowedAnalyses
The ARN of the analysis templates that are allowed by the custom analysis rule.
public string[] AllowedAnalyses { get; set; }
Property Value
string[]
Remarks
AllowedAnalysisProviders
The IDs of the AWS accounts that are allowed to query by the custom analysis rule.
public string[]? AllowedAnalysisProviders { get; set; }
Property Value
string[]
Remarks
DifferentialPrivacy
The differential privacy configuration.
public object? DifferentialPrivacy { get; set; }
Property Value
Remarks
DisallowedOutputColumns
A list of columns that aren't allowed to be shown in the query output.
public string[]? DisallowedOutputColumns { get; set; }
Property Value
string[]