@aws-sdk/client-cleanrooms 3.296.0 → 3.297.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/dist-types/CleanRooms.d.ts +38 -0
- package/dist-types/CleanRoomsClient.d.ts +24 -4
- package/dist-types/commands/BatchGetSchemaCommand.d.ts +16 -0
- package/dist-types/commands/CreateCollaborationCommand.d.ts +16 -0
- package/dist-types/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +16 -0
- package/dist-types/commands/CreateConfiguredTableAssociationCommand.d.ts +16 -0
- package/dist-types/commands/CreateConfiguredTableCommand.d.ts +16 -0
- package/dist-types/commands/CreateMembershipCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCollaborationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfiguredTableAnalysisRuleCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfiguredTableAssociationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfiguredTableCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMemberCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMembershipCommand.d.ts +16 -0
- package/dist-types/commands/GetCollaborationCommand.d.ts +16 -0
- package/dist-types/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +16 -0
- package/dist-types/commands/GetConfiguredTableAssociationCommand.d.ts +16 -0
- package/dist-types/commands/GetConfiguredTableCommand.d.ts +16 -0
- package/dist-types/commands/GetMembershipCommand.d.ts +16 -0
- package/dist-types/commands/GetProtectedQueryCommand.d.ts +16 -0
- package/dist-types/commands/GetSchemaAnalysisRuleCommand.d.ts +16 -0
- package/dist-types/commands/GetSchemaCommand.d.ts +16 -0
- package/dist-types/commands/ListCollaborationsCommand.d.ts +16 -0
- package/dist-types/commands/ListConfiguredTableAssociationsCommand.d.ts +16 -0
- package/dist-types/commands/ListConfiguredTablesCommand.d.ts +16 -0
- package/dist-types/commands/ListMembersCommand.d.ts +16 -0
- package/dist-types/commands/ListMembershipsCommand.d.ts +16 -0
- package/dist-types/commands/ListProtectedQueriesCommand.d.ts +16 -0
- package/dist-types/commands/ListSchemasCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartProtectedQueryCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCollaborationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConfiguredTableAssociationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConfiguredTableCommand.d.ts +16 -0
- package/dist-types/commands/UpdateMembershipCommand.d.ts +16 -0
- package/dist-types/commands/UpdateProtectedQueryCommand.d.ts +16 -0
- package/dist-types/models/CleanRoomsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +351 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListCollaborationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListConfiguredTableAssociationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListConfiguredTablesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMembersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMembershipsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProtectedQueriesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSchemasPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -38,6 +38,7 @@ import { UpdateConfiguredTableCommandInput, UpdateConfiguredTableCommandOutput }
|
|
|
38
38
|
import { UpdateMembershipCommandInput, UpdateMembershipCommandOutput } from "./commands/UpdateMembershipCommand";
|
|
39
39
|
import { UpdateProtectedQueryCommandInput, UpdateProtectedQueryCommandOutput } from "./commands/UpdateProtectedQueryCommand";
|
|
40
40
|
/**
|
|
41
|
+
* @public
|
|
41
42
|
* <p>Welcome to the <i>AWS Clean Rooms API Reference</i>.</p>
|
|
42
43
|
* <p>AWS Clean Rooms is an AWS service that helps multiple parties to join their data
|
|
43
44
|
* together in a secure collaboration workspace. In the collaboration, members who can query
|
|
@@ -49,24 +50,28 @@ import { UpdateProtectedQueryCommandInput, UpdateProtectedQueryCommandOutput } f
|
|
|
49
50
|
*/
|
|
50
51
|
export declare class CleanRooms extends CleanRoomsClient {
|
|
51
52
|
/**
|
|
53
|
+
* @public
|
|
52
54
|
* <p>Retrieves multiple schemas by their identifiers.</p>
|
|
53
55
|
*/
|
|
54
56
|
batchGetSchema(args: BatchGetSchemaCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetSchemaCommandOutput>;
|
|
55
57
|
batchGetSchema(args: BatchGetSchemaCommandInput, cb: (err: any, data?: BatchGetSchemaCommandOutput) => void): void;
|
|
56
58
|
batchGetSchema(args: BatchGetSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetSchemaCommandOutput) => void): void;
|
|
57
59
|
/**
|
|
60
|
+
* @public
|
|
58
61
|
* <p>Creates a new collaboration.</p>
|
|
59
62
|
*/
|
|
60
63
|
createCollaboration(args: CreateCollaborationCommandInput, options?: __HttpHandlerOptions): Promise<CreateCollaborationCommandOutput>;
|
|
61
64
|
createCollaboration(args: CreateCollaborationCommandInput, cb: (err: any, data?: CreateCollaborationCommandOutput) => void): void;
|
|
62
65
|
createCollaboration(args: CreateCollaborationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCollaborationCommandOutput) => void): void;
|
|
63
66
|
/**
|
|
67
|
+
* @public
|
|
64
68
|
* <p>Creates a new configured table resource.</p>
|
|
65
69
|
*/
|
|
66
70
|
createConfiguredTable(args: CreateConfiguredTableCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfiguredTableCommandOutput>;
|
|
67
71
|
createConfiguredTable(args: CreateConfiguredTableCommandInput, cb: (err: any, data?: CreateConfiguredTableCommandOutput) => void): void;
|
|
68
72
|
createConfiguredTable(args: CreateConfiguredTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfiguredTableCommandOutput) => void): void;
|
|
69
73
|
/**
|
|
74
|
+
* @public
|
|
70
75
|
* <p>Creates a new analysis rule for a configured table. Currently, only one analysis rule
|
|
71
76
|
* can be created for a given configured table.</p>
|
|
72
77
|
*/
|
|
@@ -74,6 +79,7 @@ export declare class CleanRooms extends CleanRoomsClient {
|
|
|
74
79
|
createConfiguredTableAnalysisRule(args: CreateConfiguredTableAnalysisRuleCommandInput, cb: (err: any, data?: CreateConfiguredTableAnalysisRuleCommandOutput) => void): void;
|
|
75
80
|
createConfiguredTableAnalysisRule(args: CreateConfiguredTableAnalysisRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfiguredTableAnalysisRuleCommandOutput) => void): void;
|
|
76
81
|
/**
|
|
82
|
+
* @public
|
|
77
83
|
* <p>Creates a configured table association. A configured table association links a
|
|
78
84
|
* configured table with a collaboration.</p>
|
|
79
85
|
*/
|
|
@@ -81,6 +87,7 @@ export declare class CleanRooms extends CleanRoomsClient {
|
|
|
81
87
|
createConfiguredTableAssociation(args: CreateConfiguredTableAssociationCommandInput, cb: (err: any, data?: CreateConfiguredTableAssociationCommandOutput) => void): void;
|
|
82
88
|
createConfiguredTableAssociation(args: CreateConfiguredTableAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfiguredTableAssociationCommandOutput) => void): void;
|
|
83
89
|
/**
|
|
90
|
+
* @public
|
|
84
91
|
* <p>Creates a membership for a specific collaboration identifier and joins the
|
|
85
92
|
* collaboration.</p>
|
|
86
93
|
*/
|
|
@@ -88,30 +95,35 @@ export declare class CleanRooms extends CleanRoomsClient {
|
|
|
88
95
|
createMembership(args: CreateMembershipCommandInput, cb: (err: any, data?: CreateMembershipCommandOutput) => void): void;
|
|
89
96
|
createMembership(args: CreateMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMembershipCommandOutput) => void): void;
|
|
90
97
|
/**
|
|
98
|
+
* @public
|
|
91
99
|
* <p>Deletes a collaboration. It can only be called by the collaboration owner.</p>
|
|
92
100
|
*/
|
|
93
101
|
deleteCollaboration(args: DeleteCollaborationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCollaborationCommandOutput>;
|
|
94
102
|
deleteCollaboration(args: DeleteCollaborationCommandInput, cb: (err: any, data?: DeleteCollaborationCommandOutput) => void): void;
|
|
95
103
|
deleteCollaboration(args: DeleteCollaborationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCollaborationCommandOutput) => void): void;
|
|
96
104
|
/**
|
|
105
|
+
* @public
|
|
97
106
|
* <p>Deletes a configured table.</p>
|
|
98
107
|
*/
|
|
99
108
|
deleteConfiguredTable(args: DeleteConfiguredTableCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfiguredTableCommandOutput>;
|
|
100
109
|
deleteConfiguredTable(args: DeleteConfiguredTableCommandInput, cb: (err: any, data?: DeleteConfiguredTableCommandOutput) => void): void;
|
|
101
110
|
deleteConfiguredTable(args: DeleteConfiguredTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfiguredTableCommandOutput) => void): void;
|
|
102
111
|
/**
|
|
112
|
+
* @public
|
|
103
113
|
* <p>Deletes a configured table analysis rule.</p>
|
|
104
114
|
*/
|
|
105
115
|
deleteConfiguredTableAnalysisRule(args: DeleteConfiguredTableAnalysisRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfiguredTableAnalysisRuleCommandOutput>;
|
|
106
116
|
deleteConfiguredTableAnalysisRule(args: DeleteConfiguredTableAnalysisRuleCommandInput, cb: (err: any, data?: DeleteConfiguredTableAnalysisRuleCommandOutput) => void): void;
|
|
107
117
|
deleteConfiguredTableAnalysisRule(args: DeleteConfiguredTableAnalysisRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfiguredTableAnalysisRuleCommandOutput) => void): void;
|
|
108
118
|
/**
|
|
119
|
+
* @public
|
|
109
120
|
* <p>Deletes a configured table association.</p>
|
|
110
121
|
*/
|
|
111
122
|
deleteConfiguredTableAssociation(args: DeleteConfiguredTableAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfiguredTableAssociationCommandOutput>;
|
|
112
123
|
deleteConfiguredTableAssociation(args: DeleteConfiguredTableAssociationCommandInput, cb: (err: any, data?: DeleteConfiguredTableAssociationCommandOutput) => void): void;
|
|
113
124
|
deleteConfiguredTableAssociation(args: DeleteConfiguredTableAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfiguredTableAssociationCommandOutput) => void): void;
|
|
114
125
|
/**
|
|
126
|
+
* @public
|
|
115
127
|
* <p>Removes the specified member from a collaboration. The removed member is placed in the
|
|
116
128
|
* Removed status and can't interact with the collaboration. The removed member's data is
|
|
117
129
|
* inaccessible to active members of the collaboration.</p>
|
|
@@ -120,156 +132,182 @@ export declare class CleanRooms extends CleanRoomsClient {
|
|
|
120
132
|
deleteMember(args: DeleteMemberCommandInput, cb: (err: any, data?: DeleteMemberCommandOutput) => void): void;
|
|
121
133
|
deleteMember(args: DeleteMemberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMemberCommandOutput) => void): void;
|
|
122
134
|
/**
|
|
135
|
+
* @public
|
|
123
136
|
* <p>Deletes a specified membership. All resources under a membership must be deleted.</p>
|
|
124
137
|
*/
|
|
125
138
|
deleteMembership(args: DeleteMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMembershipCommandOutput>;
|
|
126
139
|
deleteMembership(args: DeleteMembershipCommandInput, cb: (err: any, data?: DeleteMembershipCommandOutput) => void): void;
|
|
127
140
|
deleteMembership(args: DeleteMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMembershipCommandOutput) => void): void;
|
|
128
141
|
/**
|
|
142
|
+
* @public
|
|
129
143
|
* <p>Returns metadata about a collaboration.</p>
|
|
130
144
|
*/
|
|
131
145
|
getCollaboration(args: GetCollaborationCommandInput, options?: __HttpHandlerOptions): Promise<GetCollaborationCommandOutput>;
|
|
132
146
|
getCollaboration(args: GetCollaborationCommandInput, cb: (err: any, data?: GetCollaborationCommandOutput) => void): void;
|
|
133
147
|
getCollaboration(args: GetCollaborationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCollaborationCommandOutput) => void): void;
|
|
134
148
|
/**
|
|
149
|
+
* @public
|
|
135
150
|
* <p>Retrieves a configured table.</p>
|
|
136
151
|
*/
|
|
137
152
|
getConfiguredTable(args: GetConfiguredTableCommandInput, options?: __HttpHandlerOptions): Promise<GetConfiguredTableCommandOutput>;
|
|
138
153
|
getConfiguredTable(args: GetConfiguredTableCommandInput, cb: (err: any, data?: GetConfiguredTableCommandOutput) => void): void;
|
|
139
154
|
getConfiguredTable(args: GetConfiguredTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfiguredTableCommandOutput) => void): void;
|
|
140
155
|
/**
|
|
156
|
+
* @public
|
|
141
157
|
* <p>Retrieves a configured table analysis rule.</p>
|
|
142
158
|
*/
|
|
143
159
|
getConfiguredTableAnalysisRule(args: GetConfiguredTableAnalysisRuleCommandInput, options?: __HttpHandlerOptions): Promise<GetConfiguredTableAnalysisRuleCommandOutput>;
|
|
144
160
|
getConfiguredTableAnalysisRule(args: GetConfiguredTableAnalysisRuleCommandInput, cb: (err: any, data?: GetConfiguredTableAnalysisRuleCommandOutput) => void): void;
|
|
145
161
|
getConfiguredTableAnalysisRule(args: GetConfiguredTableAnalysisRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfiguredTableAnalysisRuleCommandOutput) => void): void;
|
|
146
162
|
/**
|
|
163
|
+
* @public
|
|
147
164
|
* <p>Retrieves a configured table association.</p>
|
|
148
165
|
*/
|
|
149
166
|
getConfiguredTableAssociation(args: GetConfiguredTableAssociationCommandInput, options?: __HttpHandlerOptions): Promise<GetConfiguredTableAssociationCommandOutput>;
|
|
150
167
|
getConfiguredTableAssociation(args: GetConfiguredTableAssociationCommandInput, cb: (err: any, data?: GetConfiguredTableAssociationCommandOutput) => void): void;
|
|
151
168
|
getConfiguredTableAssociation(args: GetConfiguredTableAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfiguredTableAssociationCommandOutput) => void): void;
|
|
152
169
|
/**
|
|
170
|
+
* @public
|
|
153
171
|
* <p>Retrieves a specified membership for an identifier.</p>
|
|
154
172
|
*/
|
|
155
173
|
getMembership(args: GetMembershipCommandInput, options?: __HttpHandlerOptions): Promise<GetMembershipCommandOutput>;
|
|
156
174
|
getMembership(args: GetMembershipCommandInput, cb: (err: any, data?: GetMembershipCommandOutput) => void): void;
|
|
157
175
|
getMembership(args: GetMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMembershipCommandOutput) => void): void;
|
|
158
176
|
/**
|
|
177
|
+
* @public
|
|
159
178
|
* <p>Returns query processing metadata.</p>
|
|
160
179
|
*/
|
|
161
180
|
getProtectedQuery(args: GetProtectedQueryCommandInput, options?: __HttpHandlerOptions): Promise<GetProtectedQueryCommandOutput>;
|
|
162
181
|
getProtectedQuery(args: GetProtectedQueryCommandInput, cb: (err: any, data?: GetProtectedQueryCommandOutput) => void): void;
|
|
163
182
|
getProtectedQuery(args: GetProtectedQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProtectedQueryCommandOutput) => void): void;
|
|
164
183
|
/**
|
|
184
|
+
* @public
|
|
165
185
|
* <p>Retrieves the schema for a relation within a collaboration.</p>
|
|
166
186
|
*/
|
|
167
187
|
getSchema(args: GetSchemaCommandInput, options?: __HttpHandlerOptions): Promise<GetSchemaCommandOutput>;
|
|
168
188
|
getSchema(args: GetSchemaCommandInput, cb: (err: any, data?: GetSchemaCommandOutput) => void): void;
|
|
169
189
|
getSchema(args: GetSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSchemaCommandOutput) => void): void;
|
|
170
190
|
/**
|
|
191
|
+
* @public
|
|
171
192
|
* <p>Retrieves a schema analysis rule.</p>
|
|
172
193
|
*/
|
|
173
194
|
getSchemaAnalysisRule(args: GetSchemaAnalysisRuleCommandInput, options?: __HttpHandlerOptions): Promise<GetSchemaAnalysisRuleCommandOutput>;
|
|
174
195
|
getSchemaAnalysisRule(args: GetSchemaAnalysisRuleCommandInput, cb: (err: any, data?: GetSchemaAnalysisRuleCommandOutput) => void): void;
|
|
175
196
|
getSchemaAnalysisRule(args: GetSchemaAnalysisRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSchemaAnalysisRuleCommandOutput) => void): void;
|
|
176
197
|
/**
|
|
198
|
+
* @public
|
|
177
199
|
* <p>Lists collaborations the caller owns, is active in, or has been invited to.</p>
|
|
178
200
|
*/
|
|
179
201
|
listCollaborations(args: ListCollaborationsCommandInput, options?: __HttpHandlerOptions): Promise<ListCollaborationsCommandOutput>;
|
|
180
202
|
listCollaborations(args: ListCollaborationsCommandInput, cb: (err: any, data?: ListCollaborationsCommandOutput) => void): void;
|
|
181
203
|
listCollaborations(args: ListCollaborationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCollaborationsCommandOutput) => void): void;
|
|
182
204
|
/**
|
|
205
|
+
* @public
|
|
183
206
|
* <p>Lists configured table associations for a membership.</p>
|
|
184
207
|
*/
|
|
185
208
|
listConfiguredTableAssociations(args: ListConfiguredTableAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfiguredTableAssociationsCommandOutput>;
|
|
186
209
|
listConfiguredTableAssociations(args: ListConfiguredTableAssociationsCommandInput, cb: (err: any, data?: ListConfiguredTableAssociationsCommandOutput) => void): void;
|
|
187
210
|
listConfiguredTableAssociations(args: ListConfiguredTableAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfiguredTableAssociationsCommandOutput) => void): void;
|
|
188
211
|
/**
|
|
212
|
+
* @public
|
|
189
213
|
* <p>Lists configured tables.</p>
|
|
190
214
|
*/
|
|
191
215
|
listConfiguredTables(args: ListConfiguredTablesCommandInput, options?: __HttpHandlerOptions): Promise<ListConfiguredTablesCommandOutput>;
|
|
192
216
|
listConfiguredTables(args: ListConfiguredTablesCommandInput, cb: (err: any, data?: ListConfiguredTablesCommandOutput) => void): void;
|
|
193
217
|
listConfiguredTables(args: ListConfiguredTablesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfiguredTablesCommandOutput) => void): void;
|
|
194
218
|
/**
|
|
219
|
+
* @public
|
|
195
220
|
* <p>Lists all members within a collaboration.</p>
|
|
196
221
|
*/
|
|
197
222
|
listMembers(args: ListMembersCommandInput, options?: __HttpHandlerOptions): Promise<ListMembersCommandOutput>;
|
|
198
223
|
listMembers(args: ListMembersCommandInput, cb: (err: any, data?: ListMembersCommandOutput) => void): void;
|
|
199
224
|
listMembers(args: ListMembersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMembersCommandOutput) => void): void;
|
|
200
225
|
/**
|
|
226
|
+
* @public
|
|
201
227
|
* <p>Lists all memberships resources within the caller's account.</p>
|
|
202
228
|
*/
|
|
203
229
|
listMemberships(args: ListMembershipsCommandInput, options?: __HttpHandlerOptions): Promise<ListMembershipsCommandOutput>;
|
|
204
230
|
listMemberships(args: ListMembershipsCommandInput, cb: (err: any, data?: ListMembershipsCommandOutput) => void): void;
|
|
205
231
|
listMemberships(args: ListMembershipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMembershipsCommandOutput) => void): void;
|
|
206
232
|
/**
|
|
233
|
+
* @public
|
|
207
234
|
* <p>Lists protected queries, sorted by the most recent query.</p>
|
|
208
235
|
*/
|
|
209
236
|
listProtectedQueries(args: ListProtectedQueriesCommandInput, options?: __HttpHandlerOptions): Promise<ListProtectedQueriesCommandOutput>;
|
|
210
237
|
listProtectedQueries(args: ListProtectedQueriesCommandInput, cb: (err: any, data?: ListProtectedQueriesCommandOutput) => void): void;
|
|
211
238
|
listProtectedQueries(args: ListProtectedQueriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProtectedQueriesCommandOutput) => void): void;
|
|
212
239
|
/**
|
|
240
|
+
* @public
|
|
213
241
|
* <p>Lists the schemas for relations within a collaboration.</p>
|
|
214
242
|
*/
|
|
215
243
|
listSchemas(args: ListSchemasCommandInput, options?: __HttpHandlerOptions): Promise<ListSchemasCommandOutput>;
|
|
216
244
|
listSchemas(args: ListSchemasCommandInput, cb: (err: any, data?: ListSchemasCommandOutput) => void): void;
|
|
217
245
|
listSchemas(args: ListSchemasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSchemasCommandOutput) => void): void;
|
|
218
246
|
/**
|
|
247
|
+
* @public
|
|
219
248
|
* <p>Lists all of the tags that have been added to a resource.</p>
|
|
220
249
|
*/
|
|
221
250
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
222
251
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
223
252
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
224
253
|
/**
|
|
254
|
+
* @public
|
|
225
255
|
* <p>Creates a protected query that is started by AWS Clean Rooms.</p>
|
|
226
256
|
*/
|
|
227
257
|
startProtectedQuery(args: StartProtectedQueryCommandInput, options?: __HttpHandlerOptions): Promise<StartProtectedQueryCommandOutput>;
|
|
228
258
|
startProtectedQuery(args: StartProtectedQueryCommandInput, cb: (err: any, data?: StartProtectedQueryCommandOutput) => void): void;
|
|
229
259
|
startProtectedQuery(args: StartProtectedQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartProtectedQueryCommandOutput) => void): void;
|
|
230
260
|
/**
|
|
261
|
+
* @public
|
|
231
262
|
* <p>Tags a resource.</p>
|
|
232
263
|
*/
|
|
233
264
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
234
265
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
235
266
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
236
267
|
/**
|
|
268
|
+
* @public
|
|
237
269
|
* <p>Removes a tag or list of tags from a resource.</p>
|
|
238
270
|
*/
|
|
239
271
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
240
272
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
241
273
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
242
274
|
/**
|
|
275
|
+
* @public
|
|
243
276
|
* <p>Updates collaboration metadata and can only be called by the collaboration owner.</p>
|
|
244
277
|
*/
|
|
245
278
|
updateCollaboration(args: UpdateCollaborationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCollaborationCommandOutput>;
|
|
246
279
|
updateCollaboration(args: UpdateCollaborationCommandInput, cb: (err: any, data?: UpdateCollaborationCommandOutput) => void): void;
|
|
247
280
|
updateCollaboration(args: UpdateCollaborationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCollaborationCommandOutput) => void): void;
|
|
248
281
|
/**
|
|
282
|
+
* @public
|
|
249
283
|
* <p>Updates a configured table.</p>
|
|
250
284
|
*/
|
|
251
285
|
updateConfiguredTable(args: UpdateConfiguredTableCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfiguredTableCommandOutput>;
|
|
252
286
|
updateConfiguredTable(args: UpdateConfiguredTableCommandInput, cb: (err: any, data?: UpdateConfiguredTableCommandOutput) => void): void;
|
|
253
287
|
updateConfiguredTable(args: UpdateConfiguredTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfiguredTableCommandOutput) => void): void;
|
|
254
288
|
/**
|
|
289
|
+
* @public
|
|
255
290
|
* <p>Updates a configured table analysis rule.</p>
|
|
256
291
|
*/
|
|
257
292
|
updateConfiguredTableAnalysisRule(args: UpdateConfiguredTableAnalysisRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfiguredTableAnalysisRuleCommandOutput>;
|
|
258
293
|
updateConfiguredTableAnalysisRule(args: UpdateConfiguredTableAnalysisRuleCommandInput, cb: (err: any, data?: UpdateConfiguredTableAnalysisRuleCommandOutput) => void): void;
|
|
259
294
|
updateConfiguredTableAnalysisRule(args: UpdateConfiguredTableAnalysisRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfiguredTableAnalysisRuleCommandOutput) => void): void;
|
|
260
295
|
/**
|
|
296
|
+
* @public
|
|
261
297
|
* <p>Updates a configured table association.</p>
|
|
262
298
|
*/
|
|
263
299
|
updateConfiguredTableAssociation(args: UpdateConfiguredTableAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfiguredTableAssociationCommandOutput>;
|
|
264
300
|
updateConfiguredTableAssociation(args: UpdateConfiguredTableAssociationCommandInput, cb: (err: any, data?: UpdateConfiguredTableAssociationCommandOutput) => void): void;
|
|
265
301
|
updateConfiguredTableAssociation(args: UpdateConfiguredTableAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfiguredTableAssociationCommandOutput) => void): void;
|
|
266
302
|
/**
|
|
303
|
+
* @public
|
|
267
304
|
* <p>Updates a membership.</p>
|
|
268
305
|
*/
|
|
269
306
|
updateMembership(args: UpdateMembershipCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMembershipCommandOutput>;
|
|
270
307
|
updateMembership(args: UpdateMembershipCommandInput, cb: (err: any, data?: UpdateMembershipCommandOutput) => void): void;
|
|
271
308
|
updateMembership(args: UpdateMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMembershipCommandOutput) => void): void;
|
|
272
309
|
/**
|
|
310
|
+
* @public
|
|
273
311
|
* <p>Updates the processing of a currently running query.</p>
|
|
274
312
|
*/
|
|
275
313
|
updateProtectedQuery(args: UpdateProtectedQueryCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProtectedQueryCommandOutput>;
|
|
@@ -45,15 +45,24 @@ import { UpdateConfiguredTableCommandInput, UpdateConfiguredTableCommandOutput }
|
|
|
45
45
|
import { UpdateMembershipCommandInput, UpdateMembershipCommandOutput } from "./commands/UpdateMembershipCommand";
|
|
46
46
|
import { UpdateProtectedQueryCommandInput, UpdateProtectedQueryCommandOutput } from "./commands/UpdateProtectedQueryCommand";
|
|
47
47
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
48
51
|
export type ServiceInputTypes = BatchGetSchemaCommandInput | CreateCollaborationCommandInput | CreateConfiguredTableAnalysisRuleCommandInput | CreateConfiguredTableAssociationCommandInput | CreateConfiguredTableCommandInput | CreateMembershipCommandInput | DeleteCollaborationCommandInput | DeleteConfiguredTableAnalysisRuleCommandInput | DeleteConfiguredTableAssociationCommandInput | DeleteConfiguredTableCommandInput | DeleteMemberCommandInput | DeleteMembershipCommandInput | GetCollaborationCommandInput | GetConfiguredTableAnalysisRuleCommandInput | GetConfiguredTableAssociationCommandInput | GetConfiguredTableCommandInput | GetMembershipCommandInput | GetProtectedQueryCommandInput | GetSchemaAnalysisRuleCommandInput | GetSchemaCommandInput | ListCollaborationsCommandInput | ListConfiguredTableAssociationsCommandInput | ListConfiguredTablesCommandInput | ListMembersCommandInput | ListMembershipsCommandInput | ListProtectedQueriesCommandInput | ListSchemasCommandInput | ListTagsForResourceCommandInput | StartProtectedQueryCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCollaborationCommandInput | UpdateConfiguredTableAnalysisRuleCommandInput | UpdateConfiguredTableAssociationCommandInput | UpdateConfiguredTableCommandInput | UpdateMembershipCommandInput | UpdateProtectedQueryCommandInput;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
49
55
|
export type ServiceOutputTypes = BatchGetSchemaCommandOutput | CreateCollaborationCommandOutput | CreateConfiguredTableAnalysisRuleCommandOutput | CreateConfiguredTableAssociationCommandOutput | CreateConfiguredTableCommandOutput | CreateMembershipCommandOutput | DeleteCollaborationCommandOutput | DeleteConfiguredTableAnalysisRuleCommandOutput | DeleteConfiguredTableAssociationCommandOutput | DeleteConfiguredTableCommandOutput | DeleteMemberCommandOutput | DeleteMembershipCommandOutput | GetCollaborationCommandOutput | GetConfiguredTableAnalysisRuleCommandOutput | GetConfiguredTableAssociationCommandOutput | GetConfiguredTableCommandOutput | GetMembershipCommandOutput | GetProtectedQueryCommandOutput | GetSchemaAnalysisRuleCommandOutput | GetSchemaCommandOutput | ListCollaborationsCommandOutput | ListConfiguredTableAssociationsCommandOutput | ListConfiguredTablesCommandOutput | ListMembersCommandOutput | ListMembershipsCommandOutput | ListProtectedQueriesCommandOutput | ListSchemasCommandOutput | ListTagsForResourceCommandOutput | StartProtectedQueryCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCollaborationCommandOutput | UpdateConfiguredTableAnalysisRuleCommandOutput | UpdateConfiguredTableAssociationCommandOutput | UpdateConfiguredTableCommandOutput | UpdateMembershipCommandOutput | UpdateProtectedQueryCommandOutput;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
50
59
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
51
60
|
/**
|
|
52
61
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
53
62
|
*/
|
|
54
63
|
requestHandler?: __HttpHandler;
|
|
55
64
|
/**
|
|
56
|
-
* A constructor for a class implementing the {@link
|
|
65
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
57
66
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
58
67
|
* @internal
|
|
59
68
|
*/
|
|
@@ -143,23 +152,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
143
152
|
*/
|
|
144
153
|
logger?: __Logger;
|
|
145
154
|
/**
|
|
146
|
-
* The {@link
|
|
155
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
147
156
|
*/
|
|
148
157
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
149
158
|
}
|
|
159
|
+
/**
|
|
160
|
+
* @public
|
|
161
|
+
*/
|
|
150
162
|
type CleanRoomsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
151
163
|
/**
|
|
152
|
-
*
|
|
164
|
+
* @public
|
|
165
|
+
*
|
|
166
|
+
* The configuration interface of CleanRoomsClient class constructor that set the region, credentials and other options.
|
|
153
167
|
*/
|
|
154
168
|
export interface CleanRoomsClientConfig extends CleanRoomsClientConfigType {
|
|
155
169
|
}
|
|
170
|
+
/**
|
|
171
|
+
* @public
|
|
172
|
+
*/
|
|
156
173
|
type CleanRoomsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
157
174
|
/**
|
|
158
|
-
*
|
|
175
|
+
* @public
|
|
176
|
+
*
|
|
177
|
+
* The resolved configuration interface of CleanRoomsClient class. This is resolved and normalized from the {@link CleanRoomsClientConfig | constructor configuration interface}.
|
|
159
178
|
*/
|
|
160
179
|
export interface CleanRoomsClientResolvedConfig extends CleanRoomsClientResolvedConfigType {
|
|
161
180
|
}
|
|
162
181
|
/**
|
|
182
|
+
* @public
|
|
163
183
|
* <p>Welcome to the <i>AWS Clean Rooms API Reference</i>.</p>
|
|
164
184
|
* <p>AWS Clean Rooms is an AWS service that helps multiple parties to join their data
|
|
165
185
|
* together in a secure collaboration workspace. In the collaboration, members who can query
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { BatchGetSchemaInput, BatchGetSchemaOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link BatchGetSchemaCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface BatchGetSchemaCommandInput extends BatchGetSchemaInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link BatchGetSchemaCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface BatchGetSchemaCommandOutput extends BatchGetSchemaOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves multiple schemas by their identifiers.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface BatchGetSchemaCommandOutput extends BatchGetSchemaOutput, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param BatchGetSchemaCommandInput - {@link BatchGetSchemaCommandInput}
|
|
34
|
+
* @returns {@link BatchGetSchemaCommandOutput}
|
|
28
35
|
* @see {@link BatchGetSchemaCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link BatchGetSchemaCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface BatchGetSchemaCommandOutput extends BatchGetSchemaOutput, __Met
|
|
|
49
56
|
export declare class BatchGetSchemaCommand extends $Command<BatchGetSchemaCommandInput, BatchGetSchemaCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
50
57
|
readonly input: BatchGetSchemaCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: BatchGetSchemaCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetSchemaCommandInput, BatchGetSchemaCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { CreateCollaborationInput, CreateCollaborationOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateCollaborationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateCollaborationCommandInput extends CreateCollaborationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateCollaborationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateCollaborationCommandOutput extends CreateCollaborationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new collaboration.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateCollaborationCommandOutput extends CreateCollaborationOut
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateCollaborationCommandInput - {@link CreateCollaborationCommandInput}
|
|
34
|
+
* @returns {@link CreateCollaborationCommandOutput}
|
|
28
35
|
* @see {@link CreateCollaborationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateCollaborationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface CreateCollaborationCommandOutput extends CreateCollaborationOut
|
|
|
49
56
|
export declare class CreateCollaborationCommand extends $Command<CreateCollaborationCommandInput, CreateCollaborationCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
50
57
|
readonly input: CreateCollaborationCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: CreateCollaborationCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCollaborationCommandInput, CreateCollaborationCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { CreateConfiguredTableAnalysisRuleInput, CreateConfiguredTableAnalysisRuleOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateConfiguredTableAnalysisRuleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateConfiguredTableAnalysisRuleCommandInput extends CreateConfiguredTableAnalysisRuleInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateConfiguredTableAnalysisRuleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateConfiguredTableAnalysisRuleCommandOutput extends CreateConfiguredTableAnalysisRuleOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new analysis rule for a configured table. Currently, only one analysis rule
|
|
18
23
|
* can be created for a given configured table.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateConfiguredTableAnalysisRuleCommandOutput extends CreateCo
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateConfiguredTableAnalysisRuleCommandInput - {@link CreateConfiguredTableAnalysisRuleCommandInput}
|
|
35
|
+
* @returns {@link CreateConfiguredTableAnalysisRuleCommandOutput}
|
|
29
36
|
* @see {@link CreateConfiguredTableAnalysisRuleCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateConfiguredTableAnalysisRuleCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface CreateConfiguredTableAnalysisRuleCommandOutput extends CreateCo
|
|
|
53
60
|
export declare class CreateConfiguredTableAnalysisRuleCommand extends $Command<CreateConfiguredTableAnalysisRuleCommandInput, CreateConfiguredTableAnalysisRuleCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
54
61
|
readonly input: CreateConfiguredTableAnalysisRuleCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: CreateConfiguredTableAnalysisRuleCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateConfiguredTableAnalysisRuleCommandInput, CreateConfiguredTableAnalysisRuleCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { CreateConfiguredTableAssociationInput, CreateConfiguredTableAssociationOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateConfiguredTableAssociationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateConfiguredTableAssociationCommandInput extends CreateConfiguredTableAssociationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateConfiguredTableAssociationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateConfiguredTableAssociationCommandOutput extends CreateConfiguredTableAssociationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a configured table association. A configured table association links a
|
|
18
23
|
* configured table with a collaboration.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateConfiguredTableAssociationCommandOutput extends CreateCon
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateConfiguredTableAssociationCommandInput - {@link CreateConfiguredTableAssociationCommandInput}
|
|
35
|
+
* @returns {@link CreateConfiguredTableAssociationCommandOutput}
|
|
29
36
|
* @see {@link CreateConfiguredTableAssociationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateConfiguredTableAssociationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface CreateConfiguredTableAssociationCommandOutput extends CreateCon
|
|
|
56
63
|
export declare class CreateConfiguredTableAssociationCommand extends $Command<CreateConfiguredTableAssociationCommandInput, CreateConfiguredTableAssociationCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
57
64
|
readonly input: CreateConfiguredTableAssociationCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: CreateConfiguredTableAssociationCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateConfiguredTableAssociationCommandInput, CreateConfiguredTableAssociationCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
|
|
5
5
|
import { CreateConfiguredTableInput, CreateConfiguredTableOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateConfiguredTableCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateConfiguredTableCommandInput extends CreateConfiguredTableInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateConfiguredTableCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateConfiguredTableCommandOutput extends CreateConfiguredTableOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new configured table resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateConfiguredTableCommandOutput extends CreateConfiguredTabl
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateConfiguredTableCommandInput - {@link CreateConfiguredTableCommandInput}
|
|
34
|
+
* @returns {@link CreateConfiguredTableCommandOutput}
|
|
28
35
|
* @see {@link CreateConfiguredTableCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateConfiguredTableCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface CreateConfiguredTableCommandOutput extends CreateConfiguredTabl
|
|
|
55
62
|
export declare class CreateConfiguredTableCommand extends $Command<CreateConfiguredTableCommandInput, CreateConfiguredTableCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
56
63
|
readonly input: CreateConfiguredTableCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: CreateConfiguredTableCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CleanRoomsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateConfiguredTableCommandInput, CreateConfiguredTableCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|