@aws-sdk/client-cleanrooms 3.618.0 → 3.619.0
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.
- package/README.md +32 -0
- package/dist-cjs/index.js +319 -30
- package/dist-es/CleanRooms.js +8 -0
- package/dist-es/commands/CreateConfiguredTableAssociationAnalysisRuleCommand.js +24 -0
- package/dist-es/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.js +24 -0
- package/dist-es/commands/GetConfiguredTableAssociationAnalysisRuleCommand.js +24 -0
- package/dist-es/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.js +24 -0
- package/dist-es/commands/UpdateProtectedQueryCommand.js +1 -1
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +50 -24
- package/dist-es/models/models_1.js +21 -0
- package/dist-es/protocols/Aws_restJson1.js +119 -0
- package/dist-types/CleanRooms.d.ts +28 -0
- package/dist-types/CleanRoomsClient.d.ts +6 -2
- package/dist-types/commands/BatchGetSchemaAnalysisRuleCommand.d.ts +7 -3
- package/dist-types/commands/BatchGetSchemaCommand.d.ts +3 -2
- package/dist-types/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +12 -0
- package/dist-types/commands/CreateConfiguredTableAssociationAnalysisRuleCommand.d.ts +143 -0
- package/dist-types/commands/CreateConfiguredTableAssociationCommand.d.ts +3 -0
- package/dist-types/commands/CreatePrivacyBudgetTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.d.ts +79 -0
- package/dist-types/commands/DeletePrivacyBudgetTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +6 -0
- package/dist-types/commands/GetConfiguredTableAssociationAnalysisRuleCommand.d.ts +114 -0
- package/dist-types/commands/GetConfiguredTableAssociationCommand.d.ts +3 -0
- package/dist-types/commands/GetPrivacyBudgetTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetProtectedQueryCommand.d.ts +3 -0
- package/dist-types/commands/GetSchemaAnalysisRuleCommand.d.ts +7 -3
- package/dist-types/commands/GetSchemaCommand.d.ts +3 -2
- package/dist-types/commands/ListPrivacyBudgetTemplatesCommand.d.ts +1 -1
- package/dist-types/commands/ListProtectedQueriesCommand.d.ts +12 -0
- package/dist-types/commands/StartProtectedQueryCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +12 -0
- package/dist-types/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.d.ts +145 -0
- package/dist-types/commands/UpdateConfiguredTableAssociationCommand.d.ts +3 -0
- package/dist-types/commands/UpdatePrivacyBudgetTemplateCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProtectedQueryCommand.d.ts +5 -1
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +614 -502
- package/dist-types/models/models_1.d.ts +430 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/CleanRooms.d.ts +92 -0
- package/dist-types/ts3.4/CleanRoomsClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateConfiguredTableAssociationAnalysisRuleCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/CreatePrivacyBudgetTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeletePrivacyBudgetTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetConfiguredTableAssociationAnalysisRuleCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/GetPrivacyBudgetTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPrivacyBudgetTemplatesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/UpdatePrivacyBudgetTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateProtectedQueryCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +188 -138
- package/dist-types/ts3.4/models/models_1.d.ts +140 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +1 -1
package/dist-es/CleanRooms.js
CHANGED
|
@@ -7,6 +7,7 @@ import { CreateAnalysisTemplateCommand, } from "./commands/CreateAnalysisTemplat
|
|
|
7
7
|
import { CreateCollaborationCommand, } from "./commands/CreateCollaborationCommand";
|
|
8
8
|
import { CreateConfiguredAudienceModelAssociationCommand, } from "./commands/CreateConfiguredAudienceModelAssociationCommand";
|
|
9
9
|
import { CreateConfiguredTableAnalysisRuleCommand, } from "./commands/CreateConfiguredTableAnalysisRuleCommand";
|
|
10
|
+
import { CreateConfiguredTableAssociationAnalysisRuleCommand, } from "./commands/CreateConfiguredTableAssociationAnalysisRuleCommand";
|
|
10
11
|
import { CreateConfiguredTableAssociationCommand, } from "./commands/CreateConfiguredTableAssociationCommand";
|
|
11
12
|
import { CreateConfiguredTableCommand, } from "./commands/CreateConfiguredTableCommand";
|
|
12
13
|
import { CreateIdMappingTableCommand, } from "./commands/CreateIdMappingTableCommand";
|
|
@@ -17,6 +18,7 @@ import { DeleteAnalysisTemplateCommand, } from "./commands/DeleteAnalysisTemplat
|
|
|
17
18
|
import { DeleteCollaborationCommand, } from "./commands/DeleteCollaborationCommand";
|
|
18
19
|
import { DeleteConfiguredAudienceModelAssociationCommand, } from "./commands/DeleteConfiguredAudienceModelAssociationCommand";
|
|
19
20
|
import { DeleteConfiguredTableAnalysisRuleCommand, } from "./commands/DeleteConfiguredTableAnalysisRuleCommand";
|
|
21
|
+
import { DeleteConfiguredTableAssociationAnalysisRuleCommand, } from "./commands/DeleteConfiguredTableAssociationAnalysisRuleCommand";
|
|
20
22
|
import { DeleteConfiguredTableAssociationCommand, } from "./commands/DeleteConfiguredTableAssociationCommand";
|
|
21
23
|
import { DeleteConfiguredTableCommand, } from "./commands/DeleteConfiguredTableCommand";
|
|
22
24
|
import { DeleteIdMappingTableCommand, } from "./commands/DeleteIdMappingTableCommand";
|
|
@@ -32,6 +34,7 @@ import { GetCollaborationIdNamespaceAssociationCommand, } from "./commands/GetCo
|
|
|
32
34
|
import { GetCollaborationPrivacyBudgetTemplateCommand, } from "./commands/GetCollaborationPrivacyBudgetTemplateCommand";
|
|
33
35
|
import { GetConfiguredAudienceModelAssociationCommand, } from "./commands/GetConfiguredAudienceModelAssociationCommand";
|
|
34
36
|
import { GetConfiguredTableAnalysisRuleCommand, } from "./commands/GetConfiguredTableAnalysisRuleCommand";
|
|
37
|
+
import { GetConfiguredTableAssociationAnalysisRuleCommand, } from "./commands/GetConfiguredTableAssociationAnalysisRuleCommand";
|
|
35
38
|
import { GetConfiguredTableAssociationCommand, } from "./commands/GetConfiguredTableAssociationCommand";
|
|
36
39
|
import { GetConfiguredTableCommand, } from "./commands/GetConfiguredTableCommand";
|
|
37
40
|
import { GetIdMappingTableCommand, } from "./commands/GetIdMappingTableCommand";
|
|
@@ -69,6 +72,7 @@ import { UpdateAnalysisTemplateCommand, } from "./commands/UpdateAnalysisTemplat
|
|
|
69
72
|
import { UpdateCollaborationCommand, } from "./commands/UpdateCollaborationCommand";
|
|
70
73
|
import { UpdateConfiguredAudienceModelAssociationCommand, } from "./commands/UpdateConfiguredAudienceModelAssociationCommand";
|
|
71
74
|
import { UpdateConfiguredTableAnalysisRuleCommand, } from "./commands/UpdateConfiguredTableAnalysisRuleCommand";
|
|
75
|
+
import { UpdateConfiguredTableAssociationAnalysisRuleCommand, } from "./commands/UpdateConfiguredTableAssociationAnalysisRuleCommand";
|
|
72
76
|
import { UpdateConfiguredTableAssociationCommand, } from "./commands/UpdateConfiguredTableAssociationCommand";
|
|
73
77
|
import { UpdateConfiguredTableCommand, } from "./commands/UpdateConfiguredTableCommand";
|
|
74
78
|
import { UpdateIdMappingTableCommand, } from "./commands/UpdateIdMappingTableCommand";
|
|
@@ -86,6 +90,7 @@ const commands = {
|
|
|
86
90
|
CreateConfiguredTableCommand,
|
|
87
91
|
CreateConfiguredTableAnalysisRuleCommand,
|
|
88
92
|
CreateConfiguredTableAssociationCommand,
|
|
93
|
+
CreateConfiguredTableAssociationAnalysisRuleCommand,
|
|
89
94
|
CreateIdMappingTableCommand,
|
|
90
95
|
CreateIdNamespaceAssociationCommand,
|
|
91
96
|
CreateMembershipCommand,
|
|
@@ -96,6 +101,7 @@ const commands = {
|
|
|
96
101
|
DeleteConfiguredTableCommand,
|
|
97
102
|
DeleteConfiguredTableAnalysisRuleCommand,
|
|
98
103
|
DeleteConfiguredTableAssociationCommand,
|
|
104
|
+
DeleteConfiguredTableAssociationAnalysisRuleCommand,
|
|
99
105
|
DeleteIdMappingTableCommand,
|
|
100
106
|
DeleteIdNamespaceAssociationCommand,
|
|
101
107
|
DeleteMemberCommand,
|
|
@@ -111,6 +117,7 @@ const commands = {
|
|
|
111
117
|
GetConfiguredTableCommand,
|
|
112
118
|
GetConfiguredTableAnalysisRuleCommand,
|
|
113
119
|
GetConfiguredTableAssociationCommand,
|
|
120
|
+
GetConfiguredTableAssociationAnalysisRuleCommand,
|
|
114
121
|
GetIdMappingTableCommand,
|
|
115
122
|
GetIdNamespaceAssociationCommand,
|
|
116
123
|
GetMembershipCommand,
|
|
@@ -148,6 +155,7 @@ const commands = {
|
|
|
148
155
|
UpdateConfiguredTableCommand,
|
|
149
156
|
UpdateConfiguredTableAnalysisRuleCommand,
|
|
150
157
|
UpdateConfiguredTableAssociationCommand,
|
|
158
|
+
UpdateConfiguredTableAssociationAnalysisRuleCommand,
|
|
151
159
|
UpdateIdMappingTableCommand,
|
|
152
160
|
UpdateIdNamespaceAssociationCommand,
|
|
153
161
|
UpdateMembershipCommand,
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_CreateConfiguredTableAssociationAnalysisRuleCommand, se_CreateConfiguredTableAssociationAnalysisRuleCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class CreateConfiguredTableAssociationAnalysisRuleCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("AWSBastionControlPlaneServiceLambda", "CreateConfiguredTableAssociationAnalysisRule", {})
|
|
19
|
+
.n("CleanRoomsClient", "CreateConfiguredTableAssociationAnalysisRuleCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_CreateConfiguredTableAssociationAnalysisRuleCommand)
|
|
22
|
+
.de(de_CreateConfiguredTableAssociationAnalysisRuleCommand)
|
|
23
|
+
.build() {
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DeleteConfiguredTableAssociationAnalysisRuleCommand, se_DeleteConfiguredTableAssociationAnalysisRuleCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DeleteConfiguredTableAssociationAnalysisRuleCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("AWSBastionControlPlaneServiceLambda", "DeleteConfiguredTableAssociationAnalysisRule", {})
|
|
19
|
+
.n("CleanRoomsClient", "DeleteConfiguredTableAssociationAnalysisRuleCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_DeleteConfiguredTableAssociationAnalysisRuleCommand)
|
|
22
|
+
.de(de_DeleteConfiguredTableAssociationAnalysisRuleCommand)
|
|
23
|
+
.build() {
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_GetConfiguredTableAssociationAnalysisRuleCommand, se_GetConfiguredTableAssociationAnalysisRuleCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class GetConfiguredTableAssociationAnalysisRuleCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("AWSBastionControlPlaneServiceLambda", "GetConfiguredTableAssociationAnalysisRule", {})
|
|
19
|
+
.n("CleanRoomsClient", "GetConfiguredTableAssociationAnalysisRuleCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_GetConfiguredTableAssociationAnalysisRuleCommand)
|
|
22
|
+
.de(de_GetConfiguredTableAssociationAnalysisRuleCommand)
|
|
23
|
+
.build() {
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_UpdateConfiguredTableAssociationAnalysisRuleCommand, se_UpdateConfiguredTableAssociationAnalysisRuleCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class UpdateConfiguredTableAssociationAnalysisRuleCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("AWSBastionControlPlaneServiceLambda", "UpdateConfiguredTableAssociationAnalysisRule", {})
|
|
19
|
+
.n("CleanRoomsClient", "UpdateConfiguredTableAssociationAnalysisRuleCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_UpdateConfiguredTableAssociationAnalysisRuleCommand)
|
|
22
|
+
.de(de_UpdateConfiguredTableAssociationAnalysisRuleCommand)
|
|
23
|
+
.build() {
|
|
24
|
+
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { UpdateProtectedQueryOutputFilterSensitiveLog
|
|
5
|
+
import { UpdateProtectedQueryOutputFilterSensitiveLog } from "../models/models_1";
|
|
6
6
|
import { de_UpdateProtectedQueryCommand, se_UpdateProtectedQueryCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class UpdateProtectedQueryCommand extends $Command
|
|
@@ -5,6 +5,7 @@ export * from "./CreateAnalysisTemplateCommand";
|
|
|
5
5
|
export * from "./CreateCollaborationCommand";
|
|
6
6
|
export * from "./CreateConfiguredAudienceModelAssociationCommand";
|
|
7
7
|
export * from "./CreateConfiguredTableAnalysisRuleCommand";
|
|
8
|
+
export * from "./CreateConfiguredTableAssociationAnalysisRuleCommand";
|
|
8
9
|
export * from "./CreateConfiguredTableAssociationCommand";
|
|
9
10
|
export * from "./CreateConfiguredTableCommand";
|
|
10
11
|
export * from "./CreateIdMappingTableCommand";
|
|
@@ -15,6 +16,7 @@ export * from "./DeleteAnalysisTemplateCommand";
|
|
|
15
16
|
export * from "./DeleteCollaborationCommand";
|
|
16
17
|
export * from "./DeleteConfiguredAudienceModelAssociationCommand";
|
|
17
18
|
export * from "./DeleteConfiguredTableAnalysisRuleCommand";
|
|
19
|
+
export * from "./DeleteConfiguredTableAssociationAnalysisRuleCommand";
|
|
18
20
|
export * from "./DeleteConfiguredTableAssociationCommand";
|
|
19
21
|
export * from "./DeleteConfiguredTableCommand";
|
|
20
22
|
export * from "./DeleteIdMappingTableCommand";
|
|
@@ -30,6 +32,7 @@ export * from "./GetCollaborationIdNamespaceAssociationCommand";
|
|
|
30
32
|
export * from "./GetCollaborationPrivacyBudgetTemplateCommand";
|
|
31
33
|
export * from "./GetConfiguredAudienceModelAssociationCommand";
|
|
32
34
|
export * from "./GetConfiguredTableAnalysisRuleCommand";
|
|
35
|
+
export * from "./GetConfiguredTableAssociationAnalysisRuleCommand";
|
|
33
36
|
export * from "./GetConfiguredTableAssociationCommand";
|
|
34
37
|
export * from "./GetConfiguredTableCommand";
|
|
35
38
|
export * from "./GetIdMappingTableCommand";
|
|
@@ -67,6 +70,7 @@ export * from "./UpdateAnalysisTemplateCommand";
|
|
|
67
70
|
export * from "./UpdateCollaborationCommand";
|
|
68
71
|
export * from "./UpdateConfiguredAudienceModelAssociationCommand";
|
|
69
72
|
export * from "./UpdateConfiguredTableAnalysisRuleCommand";
|
|
73
|
+
export * from "./UpdateConfiguredTableAssociationAnalysisRuleCommand";
|
|
70
74
|
export * from "./UpdateConfiguredTableAssociationCommand";
|
|
71
75
|
export * from "./UpdateConfiguredTableCommand";
|
|
72
76
|
export * from "./UpdateIdMappingTableCommand";
|
package/dist-es/models/index.js
CHANGED
|
@@ -16,6 +16,11 @@ export class AccessDeniedException extends __BaseException {
|
|
|
16
16
|
this.reason = opts.reason;
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
+
export const AdditionalAnalyses = {
|
|
20
|
+
ALLOWED: "ALLOWED",
|
|
21
|
+
NOT_ALLOWED: "NOT_ALLOWED",
|
|
22
|
+
REQUIRED: "REQUIRED",
|
|
23
|
+
};
|
|
19
24
|
export const AggregateFunctionName = {
|
|
20
25
|
AVG: "AVG",
|
|
21
26
|
COUNT: "COUNT",
|
|
@@ -232,19 +237,25 @@ export class ValidationException extends __BaseException {
|
|
|
232
237
|
this.fieldList = opts.fieldList;
|
|
233
238
|
}
|
|
234
239
|
}
|
|
240
|
+
export const AnalysisType = {
|
|
241
|
+
ADDITIONAL_ANALYSIS: "ADDITIONAL_ANALYSIS",
|
|
242
|
+
DIRECT_ANALYSIS: "DIRECT_ANALYSIS",
|
|
243
|
+
};
|
|
235
244
|
export const SchemaConfiguration = {
|
|
236
|
-
CUSTOM_ANALYSIS_NOT_ALLOWED: "CUSTOM_ANALYSIS_NOT_ALLOWED",
|
|
237
245
|
DIFFERENTIAL_PRIVACY: "DIFFERENTIAL_PRIVACY",
|
|
238
|
-
DIFFERENTIAL_PRIVACY_BUDGET_NOT_CONFIGURED: "DIFFERENTIAL_PRIVACY_BUDGET_NOT_CONFIGURED",
|
|
239
|
-
ID_MAPPING_TABLE_NOT_POPULATED: "ID_MAPPING_TABLE_NOT_POPULATED",
|
|
240
|
-
NO_MEMBER_ACCOUNT_ALLOWED_TO_PROVIDE_ANALYSIS: "NO_MEMBER_ACCOUNT_ALLOWED_TO_PROVIDE_ANALYSIS",
|
|
241
246
|
};
|
|
242
247
|
export const SchemaStatusReasonCode = {
|
|
248
|
+
ADDITIONAL_ANALYSES_NOT_ALLOWED: "ADDITIONAL_ANALYSES_NOT_ALLOWED",
|
|
249
|
+
ADDITIONAL_ANALYSES_NOT_CONFIGURED: "ADDITIONAL_ANALYSES_NOT_CONFIGURED",
|
|
243
250
|
ANALYSIS_PROVIDERS_NOT_CONFIGURED: "ANALYSIS_PROVIDERS_NOT_CONFIGURED",
|
|
244
251
|
ANALYSIS_RULE_MISSING: "ANALYSIS_RULE_MISSING",
|
|
252
|
+
ANALYSIS_RULE_TYPES_NOT_COMPATIBLE: "ANALYSIS_RULE_TYPES_NOT_COMPATIBLE",
|
|
245
253
|
ANALYSIS_TEMPLATES_NOT_CONFIGURED: "ANALYSIS_TEMPLATES_NOT_CONFIGURED",
|
|
254
|
+
COLLABORATION_ANALYSIS_RULE_NOT_CONFIGURED: "COLLABORATION_ANALYSIS_RULE_NOT_CONFIGURED",
|
|
246
255
|
DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED: "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED",
|
|
247
256
|
ID_MAPPING_TABLE_NOT_POPULATED: "ID_MAPPING_TABLE_NOT_POPULATED",
|
|
257
|
+
RESULT_RECEIVERS_NOT_ALLOWED: "RESULT_RECEIVERS_NOT_ALLOWED",
|
|
258
|
+
RESULT_RECEIVERS_NOT_CONFIGURED: "RESULT_RECEIVERS_NOT_CONFIGURED",
|
|
248
259
|
};
|
|
249
260
|
export const SchemaStatus = {
|
|
250
261
|
NOT_READY: "NOT_READY",
|
|
@@ -314,6 +325,31 @@ export const FilterableMemberStatus = {
|
|
|
314
325
|
ACTIVE: "ACTIVE",
|
|
315
326
|
INVITED: "INVITED",
|
|
316
327
|
};
|
|
328
|
+
export const ConfiguredTableAssociationAnalysisRuleType = {
|
|
329
|
+
AGGREGATION: "AGGREGATION",
|
|
330
|
+
CUSTOM: "CUSTOM",
|
|
331
|
+
LIST: "LIST",
|
|
332
|
+
};
|
|
333
|
+
export var ConfiguredTableAssociationAnalysisRulePolicyV1;
|
|
334
|
+
(function (ConfiguredTableAssociationAnalysisRulePolicyV1) {
|
|
335
|
+
ConfiguredTableAssociationAnalysisRulePolicyV1.visit = (value, visitor) => {
|
|
336
|
+
if (value.list !== undefined)
|
|
337
|
+
return visitor.list(value.list);
|
|
338
|
+
if (value.aggregation !== undefined)
|
|
339
|
+
return visitor.aggregation(value.aggregation);
|
|
340
|
+
if (value.custom !== undefined)
|
|
341
|
+
return visitor.custom(value.custom);
|
|
342
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
343
|
+
};
|
|
344
|
+
})(ConfiguredTableAssociationAnalysisRulePolicyV1 || (ConfiguredTableAssociationAnalysisRulePolicyV1 = {}));
|
|
345
|
+
export var ConfiguredTableAssociationAnalysisRulePolicy;
|
|
346
|
+
(function (ConfiguredTableAssociationAnalysisRulePolicy) {
|
|
347
|
+
ConfiguredTableAssociationAnalysisRulePolicy.visit = (value, visitor) => {
|
|
348
|
+
if (value.v1 !== undefined)
|
|
349
|
+
return visitor.v1(value.v1);
|
|
350
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
351
|
+
};
|
|
352
|
+
})(ConfiguredTableAssociationAnalysisRulePolicy || (ConfiguredTableAssociationAnalysisRulePolicy = {}));
|
|
317
353
|
export var TableReference;
|
|
318
354
|
(function (TableReference) {
|
|
319
355
|
TableReference.visit = (value, visitor) => {
|
|
@@ -383,6 +419,8 @@ export var ProtectedQueryOutputConfiguration;
|
|
|
383
419
|
ProtectedQueryOutputConfiguration.visit = (value, visitor) => {
|
|
384
420
|
if (value.s3 !== undefined)
|
|
385
421
|
return visitor.s3(value.s3);
|
|
422
|
+
if (value.member !== undefined)
|
|
423
|
+
return visitor.member(value.member);
|
|
386
424
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
387
425
|
};
|
|
388
426
|
})(ProtectedQueryOutputConfiguration || (ProtectedQueryOutputConfiguration = {}));
|
|
@@ -395,6 +433,14 @@ export const ProtectedQueryStatus = {
|
|
|
395
433
|
SUCCESS: "SUCCESS",
|
|
396
434
|
TIMED_OUT: "TIMED_OUT",
|
|
397
435
|
};
|
|
436
|
+
export var ConfigurationDetails;
|
|
437
|
+
(function (ConfigurationDetails) {
|
|
438
|
+
ConfigurationDetails.visit = (value, visitor) => {
|
|
439
|
+
if (value.directAnalysisConfigurationDetails !== undefined)
|
|
440
|
+
return visitor.directAnalysisConfigurationDetails(value.directAnalysisConfigurationDetails);
|
|
441
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
442
|
+
};
|
|
443
|
+
})(ConfigurationDetails || (ConfigurationDetails = {}));
|
|
398
444
|
export var PreviewPrivacyImpactParametersInput;
|
|
399
445
|
(function (PreviewPrivacyImpactParametersInput) {
|
|
400
446
|
PreviewPrivacyImpactParametersInput.visit = (value, visitor) => {
|
|
@@ -417,22 +463,6 @@ export const ProtectedQueryType = {
|
|
|
417
463
|
export const TargetProtectedQueryStatus = {
|
|
418
464
|
CANCELLED: "CANCELLED",
|
|
419
465
|
};
|
|
420
|
-
export var PrivacyBudgetTemplateParametersInput;
|
|
421
|
-
(function (PrivacyBudgetTemplateParametersInput) {
|
|
422
|
-
PrivacyBudgetTemplateParametersInput.visit = (value, visitor) => {
|
|
423
|
-
if (value.differentialPrivacy !== undefined)
|
|
424
|
-
return visitor.differentialPrivacy(value.differentialPrivacy);
|
|
425
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
426
|
-
};
|
|
427
|
-
})(PrivacyBudgetTemplateParametersInput || (PrivacyBudgetTemplateParametersInput = {}));
|
|
428
|
-
export var PrivacyBudgetTemplateUpdateParameters;
|
|
429
|
-
(function (PrivacyBudgetTemplateUpdateParameters) {
|
|
430
|
-
PrivacyBudgetTemplateUpdateParameters.visit = (value, visitor) => {
|
|
431
|
-
if (value.differentialPrivacy !== undefined)
|
|
432
|
-
return visitor.differentialPrivacy(value.differentialPrivacy);
|
|
433
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
434
|
-
};
|
|
435
|
-
})(PrivacyBudgetTemplateUpdateParameters || (PrivacyBudgetTemplateUpdateParameters = {}));
|
|
436
466
|
export const AnalysisParameterFilterSensitiveLog = (obj) => ({
|
|
437
467
|
...obj,
|
|
438
468
|
});
|
|
@@ -503,7 +533,3 @@ export const StartProtectedQueryOutputFilterSensitiveLog = (obj) => ({
|
|
|
503
533
|
...obj,
|
|
504
534
|
...(obj.protectedQuery && { protectedQuery: ProtectedQueryFilterSensitiveLog(obj.protectedQuery) }),
|
|
505
535
|
});
|
|
506
|
-
export const UpdateProtectedQueryOutputFilterSensitiveLog = (obj) => ({
|
|
507
|
-
...obj,
|
|
508
|
-
...(obj.protectedQuery && { protectedQuery: ProtectedQueryFilterSensitiveLog(obj.protectedQuery) }),
|
|
509
|
-
});
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ProtectedQueryFilterSensitiveLog, } from "./models_0";
|
|
2
|
+
export var PrivacyBudgetTemplateParametersInput;
|
|
3
|
+
(function (PrivacyBudgetTemplateParametersInput) {
|
|
4
|
+
PrivacyBudgetTemplateParametersInput.visit = (value, visitor) => {
|
|
5
|
+
if (value.differentialPrivacy !== undefined)
|
|
6
|
+
return visitor.differentialPrivacy(value.differentialPrivacy);
|
|
7
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
8
|
+
};
|
|
9
|
+
})(PrivacyBudgetTemplateParametersInput || (PrivacyBudgetTemplateParametersInput = {}));
|
|
10
|
+
export var PrivacyBudgetTemplateUpdateParameters;
|
|
11
|
+
(function (PrivacyBudgetTemplateUpdateParameters) {
|
|
12
|
+
PrivacyBudgetTemplateUpdateParameters.visit = (value, visitor) => {
|
|
13
|
+
if (value.differentialPrivacy !== undefined)
|
|
14
|
+
return visitor.differentialPrivacy(value.differentialPrivacy);
|
|
15
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
16
|
+
};
|
|
17
|
+
})(PrivacyBudgetTemplateUpdateParameters || (PrivacyBudgetTemplateUpdateParameters = {}));
|
|
18
|
+
export const UpdateProtectedQueryOutputFilterSensitiveLog = (obj) => ({
|
|
19
|
+
...obj,
|
|
20
|
+
...(obj.protectedQuery && { protectedQuery: ProtectedQueryFilterSensitiveLog(obj.protectedQuery) }),
|
|
21
|
+
});
|
|
@@ -154,6 +154,22 @@ export const se_CreateConfiguredTableAssociationCommand = async (input, context)
|
|
|
154
154
|
b.m("POST").h(headers).b(body);
|
|
155
155
|
return b.build();
|
|
156
156
|
};
|
|
157
|
+
export const se_CreateConfiguredTableAssociationAnalysisRuleCommand = async (input, context) => {
|
|
158
|
+
const b = rb(input, context);
|
|
159
|
+
const headers = {
|
|
160
|
+
"content-type": "application/json",
|
|
161
|
+
};
|
|
162
|
+
b.bp("/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}/analysisRule");
|
|
163
|
+
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
164
|
+
b.p("configuredTableAssociationIdentifier", () => input.configuredTableAssociationIdentifier, "{configuredTableAssociationIdentifier}", false);
|
|
165
|
+
let body;
|
|
166
|
+
body = JSON.stringify(take(input, {
|
|
167
|
+
analysisRulePolicy: (_) => _json(_),
|
|
168
|
+
analysisRuleType: [],
|
|
169
|
+
}));
|
|
170
|
+
b.m("POST").h(headers).b(body);
|
|
171
|
+
return b.build();
|
|
172
|
+
};
|
|
157
173
|
export const se_CreateIdMappingTableCommand = async (input, context) => {
|
|
158
174
|
const b = rb(input, context);
|
|
159
175
|
const headers = {
|
|
@@ -282,6 +298,17 @@ export const se_DeleteConfiguredTableAssociationCommand = async (input, context)
|
|
|
282
298
|
b.m("DELETE").h(headers).b(body);
|
|
283
299
|
return b.build();
|
|
284
300
|
};
|
|
301
|
+
export const se_DeleteConfiguredTableAssociationAnalysisRuleCommand = async (input, context) => {
|
|
302
|
+
const b = rb(input, context);
|
|
303
|
+
const headers = {};
|
|
304
|
+
b.bp("/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}/analysisRule/{analysisRuleType}");
|
|
305
|
+
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
306
|
+
b.p("configuredTableAssociationIdentifier", () => input.configuredTableAssociationIdentifier, "{configuredTableAssociationIdentifier}", false);
|
|
307
|
+
b.p("analysisRuleType", () => input.analysisRuleType, "{analysisRuleType}", false);
|
|
308
|
+
let body;
|
|
309
|
+
b.m("DELETE").h(headers).b(body);
|
|
310
|
+
return b.build();
|
|
311
|
+
};
|
|
285
312
|
export const se_DeleteIdMappingTableCommand = async (input, context) => {
|
|
286
313
|
const b = rb(input, context);
|
|
287
314
|
const headers = {};
|
|
@@ -429,6 +456,17 @@ export const se_GetConfiguredTableAssociationCommand = async (input, context) =>
|
|
|
429
456
|
b.m("GET").h(headers).b(body);
|
|
430
457
|
return b.build();
|
|
431
458
|
};
|
|
459
|
+
export const se_GetConfiguredTableAssociationAnalysisRuleCommand = async (input, context) => {
|
|
460
|
+
const b = rb(input, context);
|
|
461
|
+
const headers = {};
|
|
462
|
+
b.bp("/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}/analysisRule/{analysisRuleType}");
|
|
463
|
+
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
464
|
+
b.p("configuredTableAssociationIdentifier", () => input.configuredTableAssociationIdentifier, "{configuredTableAssociationIdentifier}", false);
|
|
465
|
+
b.p("analysisRuleType", () => input.analysisRuleType, "{analysisRuleType}", false);
|
|
466
|
+
let body;
|
|
467
|
+
b.m("GET").h(headers).b(body);
|
|
468
|
+
return b.build();
|
|
469
|
+
};
|
|
432
470
|
export const se_GetIdMappingTableCommand = async (input, context) => {
|
|
433
471
|
const b = rb(input, context);
|
|
434
472
|
const headers = {};
|
|
@@ -906,6 +944,22 @@ export const se_UpdateConfiguredTableAssociationCommand = async (input, context)
|
|
|
906
944
|
b.m("PATCH").h(headers).b(body);
|
|
907
945
|
return b.build();
|
|
908
946
|
};
|
|
947
|
+
export const se_UpdateConfiguredTableAssociationAnalysisRuleCommand = async (input, context) => {
|
|
948
|
+
const b = rb(input, context);
|
|
949
|
+
const headers = {
|
|
950
|
+
"content-type": "application/json",
|
|
951
|
+
};
|
|
952
|
+
b.bp("/memberships/{membershipIdentifier}/configuredTableAssociations/{configuredTableAssociationIdentifier}/analysisRule/{analysisRuleType}");
|
|
953
|
+
b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
|
|
954
|
+
b.p("configuredTableAssociationIdentifier", () => input.configuredTableAssociationIdentifier, "{configuredTableAssociationIdentifier}", false);
|
|
955
|
+
b.p("analysisRuleType", () => input.analysisRuleType, "{analysisRuleType}", false);
|
|
956
|
+
let body;
|
|
957
|
+
body = JSON.stringify(take(input, {
|
|
958
|
+
analysisRulePolicy: (_) => _json(_),
|
|
959
|
+
}));
|
|
960
|
+
b.m("PATCH").h(headers).b(body);
|
|
961
|
+
return b.build();
|
|
962
|
+
};
|
|
909
963
|
export const se_UpdateIdMappingTableCommand = async (input, context) => {
|
|
910
964
|
const b = rb(input, context);
|
|
911
965
|
const headers = {
|
|
@@ -1114,6 +1168,20 @@ export const de_CreateConfiguredTableAssociationCommand = async (output, context
|
|
|
1114
1168
|
Object.assign(contents, doc);
|
|
1115
1169
|
return contents;
|
|
1116
1170
|
};
|
|
1171
|
+
export const de_CreateConfiguredTableAssociationAnalysisRuleCommand = async (output, context) => {
|
|
1172
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1173
|
+
return de_CommandError(output, context);
|
|
1174
|
+
}
|
|
1175
|
+
const contents = map({
|
|
1176
|
+
$metadata: deserializeMetadata(output),
|
|
1177
|
+
});
|
|
1178
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1179
|
+
const doc = take(data, {
|
|
1180
|
+
analysisRule: (_) => de_ConfiguredTableAssociationAnalysisRule(_, context),
|
|
1181
|
+
});
|
|
1182
|
+
Object.assign(contents, doc);
|
|
1183
|
+
return contents;
|
|
1184
|
+
};
|
|
1117
1185
|
export const de_CreateIdMappingTableCommand = async (output, context) => {
|
|
1118
1186
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1119
1187
|
return de_CommandError(output, context);
|
|
@@ -1230,6 +1298,16 @@ export const de_DeleteConfiguredTableAssociationCommand = async (output, context
|
|
|
1230
1298
|
await collectBody(output.body, context);
|
|
1231
1299
|
return contents;
|
|
1232
1300
|
};
|
|
1301
|
+
export const de_DeleteConfiguredTableAssociationAnalysisRuleCommand = async (output, context) => {
|
|
1302
|
+
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1303
|
+
return de_CommandError(output, context);
|
|
1304
|
+
}
|
|
1305
|
+
const contents = map({
|
|
1306
|
+
$metadata: deserializeMetadata(output),
|
|
1307
|
+
});
|
|
1308
|
+
await collectBody(output.body, context);
|
|
1309
|
+
return contents;
|
|
1310
|
+
};
|
|
1233
1311
|
export const de_DeleteIdMappingTableCommand = async (output, context) => {
|
|
1234
1312
|
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1235
1313
|
return de_CommandError(output, context);
|
|
@@ -1420,6 +1498,20 @@ export const de_GetConfiguredTableAssociationCommand = async (output, context) =
|
|
|
1420
1498
|
Object.assign(contents, doc);
|
|
1421
1499
|
return contents;
|
|
1422
1500
|
};
|
|
1501
|
+
export const de_GetConfiguredTableAssociationAnalysisRuleCommand = async (output, context) => {
|
|
1502
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1503
|
+
return de_CommandError(output, context);
|
|
1504
|
+
}
|
|
1505
|
+
const contents = map({
|
|
1506
|
+
$metadata: deserializeMetadata(output),
|
|
1507
|
+
});
|
|
1508
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1509
|
+
const doc = take(data, {
|
|
1510
|
+
analysisRule: (_) => de_ConfiguredTableAssociationAnalysisRule(_, context),
|
|
1511
|
+
});
|
|
1512
|
+
Object.assign(contents, doc);
|
|
1513
|
+
return contents;
|
|
1514
|
+
};
|
|
1423
1515
|
export const de_GetIdMappingTableCommand = async (output, context) => {
|
|
1424
1516
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1425
1517
|
return de_CommandError(output, context);
|
|
@@ -1948,6 +2040,20 @@ export const de_UpdateConfiguredTableAssociationCommand = async (output, context
|
|
|
1948
2040
|
Object.assign(contents, doc);
|
|
1949
2041
|
return contents;
|
|
1950
2042
|
};
|
|
2043
|
+
export const de_UpdateConfiguredTableAssociationAnalysisRuleCommand = async (output, context) => {
|
|
2044
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2045
|
+
return de_CommandError(output, context);
|
|
2046
|
+
}
|
|
2047
|
+
const contents = map({
|
|
2048
|
+
$metadata: deserializeMetadata(output),
|
|
2049
|
+
});
|
|
2050
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
2051
|
+
const doc = take(data, {
|
|
2052
|
+
analysisRule: (_) => de_ConfiguredTableAssociationAnalysisRule(_, context),
|
|
2053
|
+
});
|
|
2054
|
+
Object.assign(contents, doc);
|
|
2055
|
+
return contents;
|
|
2056
|
+
};
|
|
1951
2057
|
export const de_UpdateIdMappingTableCommand = async (output, context) => {
|
|
1952
2058
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1953
2059
|
return de_CommandError(output, context);
|
|
@@ -2489,6 +2595,7 @@ const de_ConfiguredTableAnalysisRule = (output, context) => {
|
|
|
2489
2595
|
};
|
|
2490
2596
|
const de_ConfiguredTableAssociation = (output, context) => {
|
|
2491
2597
|
return take(output, {
|
|
2598
|
+
analysisRuleTypes: _json,
|
|
2492
2599
|
arn: __expectString,
|
|
2493
2600
|
configuredTableArn: __expectString,
|
|
2494
2601
|
configuredTableId: __expectString,
|
|
@@ -2502,6 +2609,17 @@ const de_ConfiguredTableAssociation = (output, context) => {
|
|
|
2502
2609
|
updateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2503
2610
|
});
|
|
2504
2611
|
};
|
|
2612
|
+
const de_ConfiguredTableAssociationAnalysisRule = (output, context) => {
|
|
2613
|
+
return take(output, {
|
|
2614
|
+
configuredTableAssociationArn: __expectString,
|
|
2615
|
+
configuredTableAssociationId: __expectString,
|
|
2616
|
+
createTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2617
|
+
membershipIdentifier: __expectString,
|
|
2618
|
+
policy: (_) => _json(__expectUnion(_)),
|
|
2619
|
+
type: __expectString,
|
|
2620
|
+
updateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2621
|
+
});
|
|
2622
|
+
};
|
|
2505
2623
|
const de_ConfiguredTableAssociationSummary = (output, context) => {
|
|
2506
2624
|
return take(output, {
|
|
2507
2625
|
arn: __expectString,
|
|
@@ -2801,6 +2919,7 @@ const de_ProtectedQuerySummary = (output, context) => {
|
|
|
2801
2919
|
id: __expectString,
|
|
2802
2920
|
membershipArn: __expectString,
|
|
2803
2921
|
membershipId: __expectString,
|
|
2922
|
+
receiverConfigurations: _json,
|
|
2804
2923
|
status: __expectString,
|
|
2805
2924
|
});
|
|
2806
2925
|
};
|
|
@@ -7,6 +7,7 @@ import { CreateAnalysisTemplateCommandInput, CreateAnalysisTemplateCommandOutput
|
|
|
7
7
|
import { CreateCollaborationCommandInput, CreateCollaborationCommandOutput } from "./commands/CreateCollaborationCommand";
|
|
8
8
|
import { CreateConfiguredAudienceModelAssociationCommandInput, CreateConfiguredAudienceModelAssociationCommandOutput } from "./commands/CreateConfiguredAudienceModelAssociationCommand";
|
|
9
9
|
import { CreateConfiguredTableAnalysisRuleCommandInput, CreateConfiguredTableAnalysisRuleCommandOutput } from "./commands/CreateConfiguredTableAnalysisRuleCommand";
|
|
10
|
+
import { CreateConfiguredTableAssociationAnalysisRuleCommandInput, CreateConfiguredTableAssociationAnalysisRuleCommandOutput } from "./commands/CreateConfiguredTableAssociationAnalysisRuleCommand";
|
|
10
11
|
import { CreateConfiguredTableAssociationCommandInput, CreateConfiguredTableAssociationCommandOutput } from "./commands/CreateConfiguredTableAssociationCommand";
|
|
11
12
|
import { CreateConfiguredTableCommandInput, CreateConfiguredTableCommandOutput } from "./commands/CreateConfiguredTableCommand";
|
|
12
13
|
import { CreateIdMappingTableCommandInput, CreateIdMappingTableCommandOutput } from "./commands/CreateIdMappingTableCommand";
|
|
@@ -17,6 +18,7 @@ import { DeleteAnalysisTemplateCommandInput, DeleteAnalysisTemplateCommandOutput
|
|
|
17
18
|
import { DeleteCollaborationCommandInput, DeleteCollaborationCommandOutput } from "./commands/DeleteCollaborationCommand";
|
|
18
19
|
import { DeleteConfiguredAudienceModelAssociationCommandInput, DeleteConfiguredAudienceModelAssociationCommandOutput } from "./commands/DeleteConfiguredAudienceModelAssociationCommand";
|
|
19
20
|
import { DeleteConfiguredTableAnalysisRuleCommandInput, DeleteConfiguredTableAnalysisRuleCommandOutput } from "./commands/DeleteConfiguredTableAnalysisRuleCommand";
|
|
21
|
+
import { DeleteConfiguredTableAssociationAnalysisRuleCommandInput, DeleteConfiguredTableAssociationAnalysisRuleCommandOutput } from "./commands/DeleteConfiguredTableAssociationAnalysisRuleCommand";
|
|
20
22
|
import { DeleteConfiguredTableAssociationCommandInput, DeleteConfiguredTableAssociationCommandOutput } from "./commands/DeleteConfiguredTableAssociationCommand";
|
|
21
23
|
import { DeleteConfiguredTableCommandInput, DeleteConfiguredTableCommandOutput } from "./commands/DeleteConfiguredTableCommand";
|
|
22
24
|
import { DeleteIdMappingTableCommandInput, DeleteIdMappingTableCommandOutput } from "./commands/DeleteIdMappingTableCommand";
|
|
@@ -32,6 +34,7 @@ import { GetCollaborationIdNamespaceAssociationCommandInput, GetCollaborationIdN
|
|
|
32
34
|
import { GetCollaborationPrivacyBudgetTemplateCommandInput, GetCollaborationPrivacyBudgetTemplateCommandOutput } from "./commands/GetCollaborationPrivacyBudgetTemplateCommand";
|
|
33
35
|
import { GetConfiguredAudienceModelAssociationCommandInput, GetConfiguredAudienceModelAssociationCommandOutput } from "./commands/GetConfiguredAudienceModelAssociationCommand";
|
|
34
36
|
import { GetConfiguredTableAnalysisRuleCommandInput, GetConfiguredTableAnalysisRuleCommandOutput } from "./commands/GetConfiguredTableAnalysisRuleCommand";
|
|
37
|
+
import { GetConfiguredTableAssociationAnalysisRuleCommandInput, GetConfiguredTableAssociationAnalysisRuleCommandOutput } from "./commands/GetConfiguredTableAssociationAnalysisRuleCommand";
|
|
35
38
|
import { GetConfiguredTableAssociationCommandInput, GetConfiguredTableAssociationCommandOutput } from "./commands/GetConfiguredTableAssociationCommand";
|
|
36
39
|
import { GetConfiguredTableCommandInput, GetConfiguredTableCommandOutput } from "./commands/GetConfiguredTableCommand";
|
|
37
40
|
import { GetIdMappingTableCommandInput, GetIdMappingTableCommandOutput } from "./commands/GetIdMappingTableCommand";
|
|
@@ -69,6 +72,7 @@ import { UpdateAnalysisTemplateCommandInput, UpdateAnalysisTemplateCommandOutput
|
|
|
69
72
|
import { UpdateCollaborationCommandInput, UpdateCollaborationCommandOutput } from "./commands/UpdateCollaborationCommand";
|
|
70
73
|
import { UpdateConfiguredAudienceModelAssociationCommandInput, UpdateConfiguredAudienceModelAssociationCommandOutput } from "./commands/UpdateConfiguredAudienceModelAssociationCommand";
|
|
71
74
|
import { UpdateConfiguredTableAnalysisRuleCommandInput, UpdateConfiguredTableAnalysisRuleCommandOutput } from "./commands/UpdateConfiguredTableAnalysisRuleCommand";
|
|
75
|
+
import { UpdateConfiguredTableAssociationAnalysisRuleCommandInput, UpdateConfiguredTableAssociationAnalysisRuleCommandOutput } from "./commands/UpdateConfiguredTableAssociationAnalysisRuleCommand";
|
|
72
76
|
import { UpdateConfiguredTableAssociationCommandInput, UpdateConfiguredTableAssociationCommandOutput } from "./commands/UpdateConfiguredTableAssociationCommand";
|
|
73
77
|
import { UpdateConfiguredTableCommandInput, UpdateConfiguredTableCommandOutput } from "./commands/UpdateConfiguredTableCommand";
|
|
74
78
|
import { UpdateIdMappingTableCommandInput, UpdateIdMappingTableCommandOutput } from "./commands/UpdateIdMappingTableCommand";
|
|
@@ -131,6 +135,12 @@ export interface CleanRooms {
|
|
|
131
135
|
createConfiguredTableAssociation(args: CreateConfiguredTableAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfiguredTableAssociationCommandOutput>;
|
|
132
136
|
createConfiguredTableAssociation(args: CreateConfiguredTableAssociationCommandInput, cb: (err: any, data?: CreateConfiguredTableAssociationCommandOutput) => void): void;
|
|
133
137
|
createConfiguredTableAssociation(args: CreateConfiguredTableAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfiguredTableAssociationCommandOutput) => void): void;
|
|
138
|
+
/**
|
|
139
|
+
* @see {@link CreateConfiguredTableAssociationAnalysisRuleCommand}
|
|
140
|
+
*/
|
|
141
|
+
createConfiguredTableAssociationAnalysisRule(args: CreateConfiguredTableAssociationAnalysisRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfiguredTableAssociationAnalysisRuleCommandOutput>;
|
|
142
|
+
createConfiguredTableAssociationAnalysisRule(args: CreateConfiguredTableAssociationAnalysisRuleCommandInput, cb: (err: any, data?: CreateConfiguredTableAssociationAnalysisRuleCommandOutput) => void): void;
|
|
143
|
+
createConfiguredTableAssociationAnalysisRule(args: CreateConfiguredTableAssociationAnalysisRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfiguredTableAssociationAnalysisRuleCommandOutput) => void): void;
|
|
134
144
|
/**
|
|
135
145
|
* @see {@link CreateIdMappingTableCommand}
|
|
136
146
|
*/
|
|
@@ -191,6 +201,12 @@ export interface CleanRooms {
|
|
|
191
201
|
deleteConfiguredTableAssociation(args: DeleteConfiguredTableAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfiguredTableAssociationCommandOutput>;
|
|
192
202
|
deleteConfiguredTableAssociation(args: DeleteConfiguredTableAssociationCommandInput, cb: (err: any, data?: DeleteConfiguredTableAssociationCommandOutput) => void): void;
|
|
193
203
|
deleteConfiguredTableAssociation(args: DeleteConfiguredTableAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfiguredTableAssociationCommandOutput) => void): void;
|
|
204
|
+
/**
|
|
205
|
+
* @see {@link DeleteConfiguredTableAssociationAnalysisRuleCommand}
|
|
206
|
+
*/
|
|
207
|
+
deleteConfiguredTableAssociationAnalysisRule(args: DeleteConfiguredTableAssociationAnalysisRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfiguredTableAssociationAnalysisRuleCommandOutput>;
|
|
208
|
+
deleteConfiguredTableAssociationAnalysisRule(args: DeleteConfiguredTableAssociationAnalysisRuleCommandInput, cb: (err: any, data?: DeleteConfiguredTableAssociationAnalysisRuleCommandOutput) => void): void;
|
|
209
|
+
deleteConfiguredTableAssociationAnalysisRule(args: DeleteConfiguredTableAssociationAnalysisRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfiguredTableAssociationAnalysisRuleCommandOutput) => void): void;
|
|
194
210
|
/**
|
|
195
211
|
* @see {@link DeleteIdMappingTableCommand}
|
|
196
212
|
*/
|
|
@@ -281,6 +297,12 @@ export interface CleanRooms {
|
|
|
281
297
|
getConfiguredTableAssociation(args: GetConfiguredTableAssociationCommandInput, options?: __HttpHandlerOptions): Promise<GetConfiguredTableAssociationCommandOutput>;
|
|
282
298
|
getConfiguredTableAssociation(args: GetConfiguredTableAssociationCommandInput, cb: (err: any, data?: GetConfiguredTableAssociationCommandOutput) => void): void;
|
|
283
299
|
getConfiguredTableAssociation(args: GetConfiguredTableAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfiguredTableAssociationCommandOutput) => void): void;
|
|
300
|
+
/**
|
|
301
|
+
* @see {@link GetConfiguredTableAssociationAnalysisRuleCommand}
|
|
302
|
+
*/
|
|
303
|
+
getConfiguredTableAssociationAnalysisRule(args: GetConfiguredTableAssociationAnalysisRuleCommandInput, options?: __HttpHandlerOptions): Promise<GetConfiguredTableAssociationAnalysisRuleCommandOutput>;
|
|
304
|
+
getConfiguredTableAssociationAnalysisRule(args: GetConfiguredTableAssociationAnalysisRuleCommandInput, cb: (err: any, data?: GetConfiguredTableAssociationAnalysisRuleCommandOutput) => void): void;
|
|
305
|
+
getConfiguredTableAssociationAnalysisRule(args: GetConfiguredTableAssociationAnalysisRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfiguredTableAssociationAnalysisRuleCommandOutput) => void): void;
|
|
284
306
|
/**
|
|
285
307
|
* @see {@link GetIdMappingTableCommand}
|
|
286
308
|
*/
|
|
@@ -506,6 +528,12 @@ export interface CleanRooms {
|
|
|
506
528
|
updateConfiguredTableAssociation(args: UpdateConfiguredTableAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfiguredTableAssociationCommandOutput>;
|
|
507
529
|
updateConfiguredTableAssociation(args: UpdateConfiguredTableAssociationCommandInput, cb: (err: any, data?: UpdateConfiguredTableAssociationCommandOutput) => void): void;
|
|
508
530
|
updateConfiguredTableAssociation(args: UpdateConfiguredTableAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfiguredTableAssociationCommandOutput) => void): void;
|
|
531
|
+
/**
|
|
532
|
+
* @see {@link UpdateConfiguredTableAssociationAnalysisRuleCommand}
|
|
533
|
+
*/
|
|
534
|
+
updateConfiguredTableAssociationAnalysisRule(args: UpdateConfiguredTableAssociationAnalysisRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfiguredTableAssociationAnalysisRuleCommandOutput>;
|
|
535
|
+
updateConfiguredTableAssociationAnalysisRule(args: UpdateConfiguredTableAssociationAnalysisRuleCommandInput, cb: (err: any, data?: UpdateConfiguredTableAssociationAnalysisRuleCommandOutput) => void): void;
|
|
536
|
+
updateConfiguredTableAssociationAnalysisRule(args: UpdateConfiguredTableAssociationAnalysisRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfiguredTableAssociationAnalysisRuleCommandOutput) => void): void;
|
|
509
537
|
/**
|
|
510
538
|
* @see {@link UpdateIdMappingTableCommand}
|
|
511
539
|
*/
|