-
Notifications
You must be signed in to change notification settings - Fork 17
/
CfnConfiguredTable_ConfiguredTableAnalysisRulePolicyV1Property.go
92 lines (89 loc) · 3.49 KB
/
CfnConfiguredTable_ConfiguredTableAnalysisRulePolicyV1Property.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package awscleanrooms
// Controls on the query specifications that can be run on a configured table.
//
// Example:
// // The code below shows an example of how to instantiate this type.
// // The values are placeholders you should change.
// import "github.com/aws/aws-cdk-go/awscdk"
//
// configuredTableAnalysisRulePolicyV1Property := &ConfiguredTableAnalysisRulePolicyV1Property{
// Aggregation: &AnalysisRuleAggregationProperty{
// AggregateColumns: []interface{}{
// &AggregateColumnProperty{
// ColumnNames: []*string{
// jsii.String("columnNames"),
// },
// Function: jsii.String("function"),
// },
// },
// DimensionColumns: []*string{
// jsii.String("dimensionColumns"),
// },
// JoinColumns: []*string{
// jsii.String("joinColumns"),
// },
// OutputConstraints: []interface{}{
// &AggregationConstraintProperty{
// ColumnName: jsii.String("columnName"),
// Minimum: jsii.Number(123),
// Type: jsii.String("type"),
// },
// },
// ScalarFunctions: []*string{
// jsii.String("scalarFunctions"),
// },
//
// // the properties below are optional
// AllowedJoinOperators: []*string{
// jsii.String("allowedJoinOperators"),
// },
// JoinRequired: jsii.String("joinRequired"),
// },
// Custom: &AnalysisRuleCustomProperty{
// AllowedAnalyses: []*string{
// jsii.String("allowedAnalyses"),
// },
//
// // the properties below are optional
// AllowedAnalysisProviders: []*string{
// jsii.String("allowedAnalysisProviders"),
// },
// DifferentialPrivacy: &DifferentialPrivacyProperty{
// Columns: []interface{}{
// &DifferentialPrivacyColumnProperty{
// Name: jsii.String("name"),
// },
// },
// },
// },
// List: &AnalysisRuleListProperty{
// JoinColumns: []*string{
// jsii.String("joinColumns"),
// },
// ListColumns: []*string{
// jsii.String("listColumns"),
// },
//
// // the properties below are optional
// AllowedJoinOperators: []*string{
// jsii.String("allowedJoinOperators"),
// },
// },
// }
//
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-configuredtableanalysisrulepolicyv1.html
//
type CfnConfiguredTable_ConfiguredTableAnalysisRulePolicyV1Property struct {
// Analysis rule type that enables only aggregation queries on a configured table.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-configuredtableanalysisrulepolicyv1.html#cfn-cleanrooms-configuredtable-configuredtableanalysisrulepolicyv1-aggregation
//
Aggregation interface{} `field:"optional" json:"aggregation" yaml:"aggregation"`
// Analysis rule type that enables custom SQL queries on a configured table.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-configuredtableanalysisrulepolicyv1.html#cfn-cleanrooms-configuredtable-configuredtableanalysisrulepolicyv1-custom
//
Custom interface{} `field:"optional" json:"custom" yaml:"custom"`
// Analysis rule type that enables only list queries on a configured table.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-configuredtableanalysisrulepolicyv1.html#cfn-cleanrooms-configuredtable-configuredtableanalysisrulepolicyv1-list
//
List interface{} `field:"optional" json:"list" yaml:"list"`
}