@awboost/cfn-resource-types 0.1.120 → 0.1.121
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -50,6 +50,11 @@ export type CleanRoomsConfiguredTableAttributes = {
|
|
|
50
50
|
*/
|
|
51
51
|
ConfiguredTableIdentifier: string;
|
|
52
52
|
};
|
|
53
|
+
/**
|
|
54
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTable.AdditionalAnalyses`.
|
|
55
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-additionalanalyses.html}
|
|
56
|
+
*/
|
|
57
|
+
export type AdditionalAnalyses = "ALLOWED" | "REQUIRED" | "NOT_ALLOWED";
|
|
53
58
|
/**
|
|
54
59
|
* Type definition for `AWS::CleanRooms::ConfiguredTable.AggregateColumn`.
|
|
55
60
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-aggregatecolumn.html}
|
|
@@ -107,6 +112,7 @@ export type AnalysisRule = {
|
|
|
107
112
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisruleaggregation.html}
|
|
108
113
|
*/
|
|
109
114
|
export type AnalysisRuleAggregation = {
|
|
115
|
+
AdditionalAnalyses?: AdditionalAnalyses;
|
|
110
116
|
/**
|
|
111
117
|
* @minLength `1`
|
|
112
118
|
*/
|
|
@@ -129,6 +135,7 @@ export type AnalysisRuleAggregation = {
|
|
|
129
135
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulecustom.html}
|
|
130
136
|
*/
|
|
131
137
|
export type AnalysisRuleCustom = {
|
|
138
|
+
AdditionalAnalyses?: AdditionalAnalyses;
|
|
132
139
|
/**
|
|
133
140
|
* @minLength `0`
|
|
134
141
|
*/
|
|
@@ -138,12 +145,17 @@ export type AnalysisRuleCustom = {
|
|
|
138
145
|
*/
|
|
139
146
|
AllowedAnalysisProviders?: string[];
|
|
140
147
|
DifferentialPrivacy?: DifferentialPrivacy;
|
|
148
|
+
/**
|
|
149
|
+
* @minLength `0`
|
|
150
|
+
*/
|
|
151
|
+
DisallowedOutputColumns?: string[];
|
|
141
152
|
};
|
|
142
153
|
/**
|
|
143
154
|
* Type definition for `AWS::CleanRooms::ConfiguredTable.AnalysisRuleList`.
|
|
144
155
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulelist.html}
|
|
145
156
|
*/
|
|
146
157
|
export type AnalysisRuleList = {
|
|
158
|
+
AdditionalAnalyses?: AdditionalAnalyses;
|
|
147
159
|
/**
|
|
148
160
|
* @maxLength `2`
|
|
149
161
|
*/
|
|
@@ -6,6 +6,11 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtableassociation.html}
|
|
7
7
|
*/
|
|
8
8
|
export type CleanRoomsConfiguredTableAssociationProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* @minLength `1`
|
|
11
|
+
* @maxLength `1`
|
|
12
|
+
*/
|
|
13
|
+
ConfiguredTableAssociationAnalysisRules?: ConfiguredTableAssociationAnalysisRule[];
|
|
9
14
|
/**
|
|
10
15
|
* @minLength `36`
|
|
11
16
|
* @maxLength `36`
|
|
@@ -54,6 +59,82 @@ export type CleanRoomsConfiguredTableAssociationAttributes = {
|
|
|
54
59
|
*/
|
|
55
60
|
ConfiguredTableAssociationIdentifier: string;
|
|
56
61
|
};
|
|
62
|
+
/**
|
|
63
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRule`.
|
|
64
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrule.html}
|
|
65
|
+
*/
|
|
66
|
+
export type ConfiguredTableAssociationAnalysisRule = {
|
|
67
|
+
Policy: ConfiguredTableAssociationAnalysisRulePolicy;
|
|
68
|
+
Type: ConfiguredTableAssociationAnalysisRuleType;
|
|
69
|
+
};
|
|
70
|
+
/**
|
|
71
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleAggregation`.
|
|
72
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisruleaggregation.html}
|
|
73
|
+
*/
|
|
74
|
+
export type ConfiguredTableAssociationAnalysisRuleAggregation = {
|
|
75
|
+
/**
|
|
76
|
+
* @minLength `0`
|
|
77
|
+
* @maxLength `25`
|
|
78
|
+
*/
|
|
79
|
+
AllowedAdditionalAnalyses?: string[];
|
|
80
|
+
/**
|
|
81
|
+
* @minLength `0`
|
|
82
|
+
*/
|
|
83
|
+
AllowedResultReceivers?: string[];
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleCustom`.
|
|
87
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulecustom.html}
|
|
88
|
+
*/
|
|
89
|
+
export type ConfiguredTableAssociationAnalysisRuleCustom = {
|
|
90
|
+
/**
|
|
91
|
+
* @minLength `0`
|
|
92
|
+
* @maxLength `25`
|
|
93
|
+
*/
|
|
94
|
+
AllowedAdditionalAnalyses?: string[];
|
|
95
|
+
/**
|
|
96
|
+
* @minLength `0`
|
|
97
|
+
*/
|
|
98
|
+
AllowedResultReceivers?: string[];
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleList`.
|
|
102
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulelist.html}
|
|
103
|
+
*/
|
|
104
|
+
export type ConfiguredTableAssociationAnalysisRuleList = {
|
|
105
|
+
/**
|
|
106
|
+
* @minLength `0`
|
|
107
|
+
* @maxLength `25`
|
|
108
|
+
*/
|
|
109
|
+
AllowedAdditionalAnalyses?: string[];
|
|
110
|
+
/**
|
|
111
|
+
* @minLength `0`
|
|
112
|
+
*/
|
|
113
|
+
AllowedResultReceivers?: string[];
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRulePolicy`.
|
|
117
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulepolicy.html}
|
|
118
|
+
*/
|
|
119
|
+
export type ConfiguredTableAssociationAnalysisRulePolicy = {
|
|
120
|
+
V1: ConfiguredTableAssociationAnalysisRulePolicyV1;
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRulePolicyV1`.
|
|
124
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulepolicyv1.html}
|
|
125
|
+
*/
|
|
126
|
+
export type ConfiguredTableAssociationAnalysisRulePolicyV1 = {
|
|
127
|
+
List: ConfiguredTableAssociationAnalysisRuleList;
|
|
128
|
+
} | {
|
|
129
|
+
Aggregation: ConfiguredTableAssociationAnalysisRuleAggregation;
|
|
130
|
+
} | {
|
|
131
|
+
Custom: ConfiguredTableAssociationAnalysisRuleCustom;
|
|
132
|
+
};
|
|
133
|
+
/**
|
|
134
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleType`.
|
|
135
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisruletype.html}
|
|
136
|
+
*/
|
|
137
|
+
export type ConfiguredTableAssociationAnalysisRuleType = "AGGREGATION" | "LIST" | "CUSTOM";
|
|
57
138
|
/**
|
|
58
139
|
* Type definition for `AWS::CleanRooms::ConfiguredTableAssociation.Tag`.
|
|
59
140
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-tag.html}
|