@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
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { CleanRoomsServiceException as __BaseException } from "./CleanRoomsServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export declare enum AccessDeniedExceptionReason {
|
|
4
7
|
INSUFFICIENT_PERMISSIONS = "INSUFFICIENT_PERMISSIONS"
|
|
5
8
|
}
|
|
6
9
|
/**
|
|
10
|
+
* @public
|
|
7
11
|
* <p>Caller does not have sufficient access to perform this action.</p>
|
|
8
12
|
*/
|
|
9
13
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -18,6 +22,9 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
18
22
|
*/
|
|
19
23
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
20
24
|
}
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
21
28
|
export declare enum AggregateFunctionName {
|
|
22
29
|
AVG = "AVG",
|
|
23
30
|
COUNT = "COUNT",
|
|
@@ -26,6 +33,7 @@ export declare enum AggregateFunctionName {
|
|
|
26
33
|
SUM_DISTINCT = "SUM_DISTINCT"
|
|
27
34
|
}
|
|
28
35
|
/**
|
|
36
|
+
* @public
|
|
29
37
|
* <p>Column in configured table that can be used in aggregate function in query.</p>
|
|
30
38
|
*/
|
|
31
39
|
export interface AggregateColumn {
|
|
@@ -38,10 +46,14 @@ export interface AggregateColumn {
|
|
|
38
46
|
*/
|
|
39
47
|
function: AggregateFunctionName | string | undefined;
|
|
40
48
|
}
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
41
52
|
export declare enum AggregationType {
|
|
42
53
|
COUNT_DISTINCT = "COUNT_DISTINCT"
|
|
43
54
|
}
|
|
44
55
|
/**
|
|
56
|
+
* @public
|
|
45
57
|
* <p>Constraint on query output removing output rows that do not meet a minimum number of distinct values of a specified column.</p>
|
|
46
58
|
*/
|
|
47
59
|
export interface AggregationConstraint {
|
|
@@ -61,12 +73,21 @@ export interface AggregationConstraint {
|
|
|
61
73
|
*/
|
|
62
74
|
type: AggregationType | string | undefined;
|
|
63
75
|
}
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
64
79
|
export declare enum AnalysisMethod {
|
|
65
80
|
DIRECT_QUERY = "DIRECT_QUERY"
|
|
66
81
|
}
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
67
85
|
export declare enum JoinRequiredOption {
|
|
68
86
|
QUERY_RUNNER = "QUERY_RUNNER"
|
|
69
87
|
}
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
70
91
|
export declare enum ScalarFunctions {
|
|
71
92
|
ABS = "ABS",
|
|
72
93
|
CAST = "CAST",
|
|
@@ -83,6 +104,7 @@ export declare enum ScalarFunctions {
|
|
|
83
104
|
UPPER = "UPPER"
|
|
84
105
|
}
|
|
85
106
|
/**
|
|
107
|
+
* @public
|
|
86
108
|
* <p>Enables query structure and specified queries that product aggregate statistics.</p>
|
|
87
109
|
*/
|
|
88
110
|
export interface AnalysisRuleAggregation {
|
|
@@ -114,6 +136,7 @@ export interface AnalysisRuleAggregation {
|
|
|
114
136
|
outputConstraints: AggregationConstraint[] | undefined;
|
|
115
137
|
}
|
|
116
138
|
/**
|
|
139
|
+
* @public
|
|
117
140
|
* <p>A type of analysis rule that enables row-level analysis.</p>
|
|
118
141
|
*/
|
|
119
142
|
export interface AnalysisRuleList {
|
|
@@ -127,9 +150,13 @@ export interface AnalysisRuleList {
|
|
|
127
150
|
listColumns: string[] | undefined;
|
|
128
151
|
}
|
|
129
152
|
/**
|
|
153
|
+
* @public
|
|
130
154
|
* <p>Controls on the query specifications that can be run on configured table..</p>
|
|
131
155
|
*/
|
|
132
156
|
export type AnalysisRulePolicyV1 = AnalysisRulePolicyV1.AggregationMember | AnalysisRulePolicyV1.ListMember | AnalysisRulePolicyV1.$UnknownMember;
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
133
160
|
export declare namespace AnalysisRulePolicyV1 {
|
|
134
161
|
/**
|
|
135
162
|
* <p>Analysis rule type that enables only list queries on a configured table.</p>
|
|
@@ -160,9 +187,13 @@ export declare namespace AnalysisRulePolicyV1 {
|
|
|
160
187
|
const visit: <T>(value: AnalysisRulePolicyV1, visitor: Visitor<T>) => T;
|
|
161
188
|
}
|
|
162
189
|
/**
|
|
190
|
+
* @public
|
|
163
191
|
* <p>Controls on the query specifications that can be run on configured table..</p>
|
|
164
192
|
*/
|
|
165
193
|
export type AnalysisRulePolicy = AnalysisRulePolicy.V1Member | AnalysisRulePolicy.$UnknownMember;
|
|
194
|
+
/**
|
|
195
|
+
* @public
|
|
196
|
+
*/
|
|
166
197
|
export declare namespace AnalysisRulePolicy {
|
|
167
198
|
/**
|
|
168
199
|
* <p>Controls on the query specifications that can be run on configured table..</p>
|
|
@@ -181,11 +212,15 @@ export declare namespace AnalysisRulePolicy {
|
|
|
181
212
|
}
|
|
182
213
|
const visit: <T>(value: AnalysisRulePolicy, visitor: Visitor<T>) => T;
|
|
183
214
|
}
|
|
215
|
+
/**
|
|
216
|
+
* @public
|
|
217
|
+
*/
|
|
184
218
|
export declare enum AnalysisRuleType {
|
|
185
219
|
AGGREGATION = "AGGREGATION",
|
|
186
220
|
LIST = "LIST"
|
|
187
221
|
}
|
|
188
222
|
/**
|
|
223
|
+
* @public
|
|
189
224
|
* <p>A specification about how data from the configured table can be used in a query.</p>
|
|
190
225
|
*/
|
|
191
226
|
export interface AnalysisRule {
|
|
@@ -214,6 +249,9 @@ export interface AnalysisRule {
|
|
|
214
249
|
*/
|
|
215
250
|
policy: AnalysisRulePolicy | undefined;
|
|
216
251
|
}
|
|
252
|
+
/**
|
|
253
|
+
* @public
|
|
254
|
+
*/
|
|
217
255
|
export interface BatchGetSchemaInput {
|
|
218
256
|
/**
|
|
219
257
|
* <p>A unique identifier for the collaboration that the schemas belong to. Currently accepts
|
|
@@ -226,6 +264,7 @@ export interface BatchGetSchemaInput {
|
|
|
226
264
|
names: string[] | undefined;
|
|
227
265
|
}
|
|
228
266
|
/**
|
|
267
|
+
* @public
|
|
229
268
|
* <p>An error describing why a schema could not be fetched.</p>
|
|
230
269
|
*/
|
|
231
270
|
export interface BatchGetSchemaError {
|
|
@@ -243,6 +282,7 @@ export interface BatchGetSchemaError {
|
|
|
243
282
|
message: string | undefined;
|
|
244
283
|
}
|
|
245
284
|
/**
|
|
285
|
+
* @public
|
|
246
286
|
* <p>A column within a schema relation, derived from the underlying AWS Glue table.</p>
|
|
247
287
|
*/
|
|
248
288
|
export interface Column {
|
|
@@ -255,10 +295,14 @@ export interface Column {
|
|
|
255
295
|
*/
|
|
256
296
|
type: string | undefined;
|
|
257
297
|
}
|
|
298
|
+
/**
|
|
299
|
+
* @public
|
|
300
|
+
*/
|
|
258
301
|
export declare enum SchemaType {
|
|
259
302
|
TABLE = "TABLE"
|
|
260
303
|
}
|
|
261
304
|
/**
|
|
305
|
+
* @public
|
|
262
306
|
* <p>A schema is a relation within a collaboration.</p>
|
|
263
307
|
*/
|
|
264
308
|
export interface Schema {
|
|
@@ -313,6 +357,9 @@ export interface Schema {
|
|
|
313
357
|
*/
|
|
314
358
|
type: SchemaType | string | undefined;
|
|
315
359
|
}
|
|
360
|
+
/**
|
|
361
|
+
* @public
|
|
362
|
+
*/
|
|
316
363
|
export interface BatchGetSchemaOutput {
|
|
317
364
|
/**
|
|
318
365
|
* <p>The retrieved list of schemas.</p>
|
|
@@ -325,6 +372,7 @@ export interface BatchGetSchemaOutput {
|
|
|
325
372
|
errors: BatchGetSchemaError[] | undefined;
|
|
326
373
|
}
|
|
327
374
|
/**
|
|
375
|
+
* @public
|
|
328
376
|
* <p>Unexpected error during processing of request.</p>
|
|
329
377
|
*/
|
|
330
378
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -335,6 +383,9 @@ export declare class InternalServerException extends __BaseException {
|
|
|
335
383
|
*/
|
|
336
384
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
337
385
|
}
|
|
386
|
+
/**
|
|
387
|
+
* @public
|
|
388
|
+
*/
|
|
338
389
|
export declare enum ResourceType {
|
|
339
390
|
COLLABORATION = "COLLABORATION",
|
|
340
391
|
CONFIGURED_TABLE = "CONFIGURED_TABLE",
|
|
@@ -342,6 +393,7 @@ export declare enum ResourceType {
|
|
|
342
393
|
MEMBERSHIP = "MEMBERSHIP"
|
|
343
394
|
}
|
|
344
395
|
/**
|
|
396
|
+
* @public
|
|
345
397
|
* <p>Request references a resource which does not exist.</p>
|
|
346
398
|
*/
|
|
347
399
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -361,6 +413,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
361
413
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
362
414
|
}
|
|
363
415
|
/**
|
|
416
|
+
* @public
|
|
364
417
|
* <p>Request was denied due to request throttling.</p>
|
|
365
418
|
*/
|
|
366
419
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -372,6 +425,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
372
425
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
373
426
|
}
|
|
374
427
|
/**
|
|
428
|
+
* @public
|
|
375
429
|
* <p>Describes validation errors for specific input parameters.</p>
|
|
376
430
|
*/
|
|
377
431
|
export interface ValidationExceptionField {
|
|
@@ -384,12 +438,16 @@ export interface ValidationExceptionField {
|
|
|
384
438
|
*/
|
|
385
439
|
message: string | undefined;
|
|
386
440
|
}
|
|
441
|
+
/**
|
|
442
|
+
* @public
|
|
443
|
+
*/
|
|
387
444
|
export declare enum ValidationExceptionReason {
|
|
388
445
|
FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
|
|
389
446
|
INVALID_CONFIGURATION = "INVALID_CONFIGURATION",
|
|
390
447
|
INVALID_QUERY = "INVALID_QUERY"
|
|
391
448
|
}
|
|
392
449
|
/**
|
|
450
|
+
* @public
|
|
393
451
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
394
452
|
*/
|
|
395
453
|
export declare class ValidationException extends __BaseException {
|
|
@@ -408,11 +466,15 @@ export declare class ValidationException extends __BaseException {
|
|
|
408
466
|
*/
|
|
409
467
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
410
468
|
}
|
|
469
|
+
/**
|
|
470
|
+
* @public
|
|
471
|
+
*/
|
|
411
472
|
export declare enum MemberAbility {
|
|
412
473
|
CAN_QUERY = "CAN_QUERY",
|
|
413
474
|
CAN_RECEIVE_RESULTS = "CAN_RECEIVE_RESULTS"
|
|
414
475
|
}
|
|
415
476
|
/**
|
|
477
|
+
* @public
|
|
416
478
|
* <p>The settings for client-side encryption for cryptographic computing.</p>
|
|
417
479
|
*/
|
|
418
480
|
export interface DataEncryptionMetadata {
|
|
@@ -434,6 +496,7 @@ export interface DataEncryptionMetadata {
|
|
|
434
496
|
preserveNulls: boolean | undefined;
|
|
435
497
|
}
|
|
436
498
|
/**
|
|
499
|
+
* @public
|
|
437
500
|
* <p>Basic metadata used to construct a new member.</p>
|
|
438
501
|
*/
|
|
439
502
|
export interface MemberSpecification {
|
|
@@ -450,10 +513,16 @@ export interface MemberSpecification {
|
|
|
450
513
|
*/
|
|
451
514
|
displayName: string | undefined;
|
|
452
515
|
}
|
|
516
|
+
/**
|
|
517
|
+
* @public
|
|
518
|
+
*/
|
|
453
519
|
export declare enum CollaborationQueryLogStatus {
|
|
454
520
|
DISABLED = "DISABLED",
|
|
455
521
|
ENABLED = "ENABLED"
|
|
456
522
|
}
|
|
523
|
+
/**
|
|
524
|
+
* @public
|
|
525
|
+
*/
|
|
457
526
|
export interface CreateCollaborationInput {
|
|
458
527
|
/**
|
|
459
528
|
* <p>A list of initial members, not including the creator. This list is immutable.</p>
|
|
@@ -492,6 +561,9 @@ export interface CreateCollaborationInput {
|
|
|
492
561
|
*/
|
|
493
562
|
tags?: Record<string, string>;
|
|
494
563
|
}
|
|
564
|
+
/**
|
|
565
|
+
* @public
|
|
566
|
+
*/
|
|
495
567
|
export declare enum MemberStatus {
|
|
496
568
|
ACTIVE = "ACTIVE",
|
|
497
569
|
INVITED = "INVITED",
|
|
@@ -499,6 +571,7 @@ export declare enum MemberStatus {
|
|
|
499
571
|
REMOVED = "REMOVED"
|
|
500
572
|
}
|
|
501
573
|
/**
|
|
574
|
+
* @public
|
|
502
575
|
* <p>The multi-party data share environment. The collaboration contains metadata about its purpose and participants.</p>
|
|
503
576
|
*/
|
|
504
577
|
export interface Collaboration {
|
|
@@ -556,6 +629,9 @@ export interface Collaboration {
|
|
|
556
629
|
*/
|
|
557
630
|
queryLogStatus: CollaborationQueryLogStatus | string | undefined;
|
|
558
631
|
}
|
|
632
|
+
/**
|
|
633
|
+
* @public
|
|
634
|
+
*/
|
|
559
635
|
export interface CreateCollaborationOutput {
|
|
560
636
|
/**
|
|
561
637
|
* <p>The entire created collaboration object.</p>
|
|
@@ -563,6 +639,7 @@ export interface CreateCollaborationOutput {
|
|
|
563
639
|
collaboration: Collaboration | undefined;
|
|
564
640
|
}
|
|
565
641
|
/**
|
|
642
|
+
* @public
|
|
566
643
|
* <p>Request denied because service quota has been exceeded.</p>
|
|
567
644
|
*/
|
|
568
645
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -581,20 +658,30 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
581
658
|
*/
|
|
582
659
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
583
660
|
}
|
|
661
|
+
/**
|
|
662
|
+
* @public
|
|
663
|
+
*/
|
|
584
664
|
export interface DeleteCollaborationInput {
|
|
585
665
|
/**
|
|
586
666
|
* <p>The identifier for the collaboration.</p>
|
|
587
667
|
*/
|
|
588
668
|
collaborationIdentifier: string | undefined;
|
|
589
669
|
}
|
|
670
|
+
/**
|
|
671
|
+
* @public
|
|
672
|
+
*/
|
|
590
673
|
export interface DeleteCollaborationOutput {
|
|
591
674
|
}
|
|
675
|
+
/**
|
|
676
|
+
* @public
|
|
677
|
+
*/
|
|
592
678
|
export declare enum ConflictExceptionReason {
|
|
593
679
|
ALREADY_EXISTS = "ALREADY_EXISTS",
|
|
594
680
|
INVALID_STATE = "INVALID_STATE",
|
|
595
681
|
SUBRESOURCES_EXIST = "SUBRESOURCES_EXIST"
|
|
596
682
|
}
|
|
597
683
|
/**
|
|
684
|
+
* @public
|
|
598
685
|
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
599
686
|
*/
|
|
600
687
|
export declare class ConflictException extends __BaseException {
|
|
@@ -617,6 +704,9 @@ export declare class ConflictException extends __BaseException {
|
|
|
617
704
|
*/
|
|
618
705
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
619
706
|
}
|
|
707
|
+
/**
|
|
708
|
+
* @public
|
|
709
|
+
*/
|
|
620
710
|
export interface DeleteMemberInput {
|
|
621
711
|
/**
|
|
622
712
|
* <p>The unique identifier for the associated collaboration.</p>
|
|
@@ -627,20 +717,32 @@ export interface DeleteMemberInput {
|
|
|
627
717
|
*/
|
|
628
718
|
accountId: string | undefined;
|
|
629
719
|
}
|
|
720
|
+
/**
|
|
721
|
+
* @public
|
|
722
|
+
*/
|
|
630
723
|
export interface DeleteMemberOutput {
|
|
631
724
|
}
|
|
725
|
+
/**
|
|
726
|
+
* @public
|
|
727
|
+
*/
|
|
632
728
|
export interface GetCollaborationInput {
|
|
633
729
|
/**
|
|
634
730
|
* <p>The identifier for the collaboration.</p>
|
|
635
731
|
*/
|
|
636
732
|
collaborationIdentifier: string | undefined;
|
|
637
733
|
}
|
|
734
|
+
/**
|
|
735
|
+
* @public
|
|
736
|
+
*/
|
|
638
737
|
export interface GetCollaborationOutput {
|
|
639
738
|
/**
|
|
640
739
|
* <p>The entire collaboration for this identifier.</p>
|
|
641
740
|
*/
|
|
642
741
|
collaboration: Collaboration | undefined;
|
|
643
742
|
}
|
|
743
|
+
/**
|
|
744
|
+
* @public
|
|
745
|
+
*/
|
|
644
746
|
export interface GetSchemaInput {
|
|
645
747
|
/**
|
|
646
748
|
* <p>A unique identifier for the collaboration that the schema belongs to. Currently accepts
|
|
@@ -652,12 +754,18 @@ export interface GetSchemaInput {
|
|
|
652
754
|
*/
|
|
653
755
|
name: string | undefined;
|
|
654
756
|
}
|
|
757
|
+
/**
|
|
758
|
+
* @public
|
|
759
|
+
*/
|
|
655
760
|
export interface GetSchemaOutput {
|
|
656
761
|
/**
|
|
657
762
|
* <p>The entire schema object.</p>
|
|
658
763
|
*/
|
|
659
764
|
schema: Schema | undefined;
|
|
660
765
|
}
|
|
766
|
+
/**
|
|
767
|
+
* @public
|
|
768
|
+
*/
|
|
661
769
|
export interface GetSchemaAnalysisRuleInput {
|
|
662
770
|
/**
|
|
663
771
|
* <p>A unique identifier for the collaboration that the schema belongs to. Currently accepts
|
|
@@ -673,16 +781,25 @@ export interface GetSchemaAnalysisRuleInput {
|
|
|
673
781
|
*/
|
|
674
782
|
type: AnalysisRuleType | string | undefined;
|
|
675
783
|
}
|
|
784
|
+
/**
|
|
785
|
+
* @public
|
|
786
|
+
*/
|
|
676
787
|
export interface GetSchemaAnalysisRuleOutput {
|
|
677
788
|
/**
|
|
678
789
|
* <p>A specification about how data from the configured table can be used.</p>
|
|
679
790
|
*/
|
|
680
791
|
analysisRule: AnalysisRule | undefined;
|
|
681
792
|
}
|
|
793
|
+
/**
|
|
794
|
+
* @public
|
|
795
|
+
*/
|
|
682
796
|
export declare enum FilterableMemberStatus {
|
|
683
797
|
ACTIVE = "ACTIVE",
|
|
684
798
|
INVITED = "INVITED"
|
|
685
799
|
}
|
|
800
|
+
/**
|
|
801
|
+
* @public
|
|
802
|
+
*/
|
|
686
803
|
export interface ListCollaborationsInput {
|
|
687
804
|
/**
|
|
688
805
|
* <p>The token value retrieved from a previous call to access the next page of results.</p>
|
|
@@ -700,6 +817,7 @@ export interface ListCollaborationsInput {
|
|
|
700
817
|
memberStatus?: FilterableMemberStatus | string;
|
|
701
818
|
}
|
|
702
819
|
/**
|
|
820
|
+
* @public
|
|
703
821
|
* <p>The metadata of the collaboration.</p>
|
|
704
822
|
*/
|
|
705
823
|
export interface CollaborationSummary {
|
|
@@ -744,6 +862,9 @@ export interface CollaborationSummary {
|
|
|
744
862
|
*/
|
|
745
863
|
membershipArn?: string;
|
|
746
864
|
}
|
|
865
|
+
/**
|
|
866
|
+
* @public
|
|
867
|
+
*/
|
|
747
868
|
export interface ListCollaborationsOutput {
|
|
748
869
|
/**
|
|
749
870
|
* <p>The token value retrieved from a previous call to access the next page of results.</p>
|
|
@@ -754,6 +875,9 @@ export interface ListCollaborationsOutput {
|
|
|
754
875
|
*/
|
|
755
876
|
collaborationList: CollaborationSummary[] | undefined;
|
|
756
877
|
}
|
|
878
|
+
/**
|
|
879
|
+
* @public
|
|
880
|
+
*/
|
|
757
881
|
export interface ListMembersInput {
|
|
758
882
|
/**
|
|
759
883
|
* <p>The identifier of the collaboration in which the members are listed.</p>
|
|
@@ -769,6 +893,7 @@ export interface ListMembersInput {
|
|
|
769
893
|
maxResults?: number;
|
|
770
894
|
}
|
|
771
895
|
/**
|
|
896
|
+
* @public
|
|
772
897
|
* <p>The member object listed by the request.</p>
|
|
773
898
|
*/
|
|
774
899
|
export interface MemberSummary {
|
|
@@ -805,6 +930,9 @@ export interface MemberSummary {
|
|
|
805
930
|
*/
|
|
806
931
|
membershipArn?: string;
|
|
807
932
|
}
|
|
933
|
+
/**
|
|
934
|
+
* @public
|
|
935
|
+
*/
|
|
808
936
|
export interface ListMembersOutput {
|
|
809
937
|
/**
|
|
810
938
|
* <p>The token value retrieved from a previous call to access the next page of results.</p>
|
|
@@ -815,6 +943,9 @@ export interface ListMembersOutput {
|
|
|
815
943
|
*/
|
|
816
944
|
memberSummaries: MemberSummary[] | undefined;
|
|
817
945
|
}
|
|
946
|
+
/**
|
|
947
|
+
* @public
|
|
948
|
+
*/
|
|
818
949
|
export interface ListSchemasInput {
|
|
819
950
|
/**
|
|
820
951
|
* <p>A unique identifier for the collaboration that the schema belongs to. Currently accepts
|
|
@@ -835,6 +966,7 @@ export interface ListSchemasInput {
|
|
|
835
966
|
maxResults?: number;
|
|
836
967
|
}
|
|
837
968
|
/**
|
|
969
|
+
* @public
|
|
838
970
|
* <p>The schema summary for the objects listed by the request.</p>
|
|
839
971
|
*/
|
|
840
972
|
export interface SchemaSummary {
|
|
@@ -875,6 +1007,9 @@ export interface SchemaSummary {
|
|
|
875
1007
|
*/
|
|
876
1008
|
analysisMethod?: AnalysisMethod | string;
|
|
877
1009
|
}
|
|
1010
|
+
/**
|
|
1011
|
+
* @public
|
|
1012
|
+
*/
|
|
878
1013
|
export interface ListSchemasOutput {
|
|
879
1014
|
/**
|
|
880
1015
|
* <p>The retrieved list of schemas.</p>
|
|
@@ -885,6 +1020,9 @@ export interface ListSchemasOutput {
|
|
|
885
1020
|
*/
|
|
886
1021
|
nextToken?: string;
|
|
887
1022
|
}
|
|
1023
|
+
/**
|
|
1024
|
+
* @public
|
|
1025
|
+
*/
|
|
888
1026
|
export interface UpdateCollaborationInput {
|
|
889
1027
|
/**
|
|
890
1028
|
* <p>The identifier for the collaboration.</p>
|
|
@@ -899,12 +1037,18 @@ export interface UpdateCollaborationInput {
|
|
|
899
1037
|
*/
|
|
900
1038
|
description?: string;
|
|
901
1039
|
}
|
|
1040
|
+
/**
|
|
1041
|
+
* @public
|
|
1042
|
+
*/
|
|
902
1043
|
export interface UpdateCollaborationOutput {
|
|
903
1044
|
/**
|
|
904
1045
|
* <p>The entire collaboration that has been updated.</p>
|
|
905
1046
|
*/
|
|
906
1047
|
collaboration: Collaboration | undefined;
|
|
907
1048
|
}
|
|
1049
|
+
/**
|
|
1050
|
+
* @public
|
|
1051
|
+
*/
|
|
908
1052
|
export interface CreateConfiguredTableAssociationInput {
|
|
909
1053
|
/**
|
|
910
1054
|
* <p>The name of the configured table association. This name is used to query the underlying
|
|
@@ -939,6 +1083,7 @@ export interface CreateConfiguredTableAssociationInput {
|
|
|
939
1083
|
tags?: Record<string, string>;
|
|
940
1084
|
}
|
|
941
1085
|
/**
|
|
1086
|
+
* @public
|
|
942
1087
|
* <p>A configured table association links a configured table to a collaboration.</p>
|
|
943
1088
|
*/
|
|
944
1089
|
export interface ConfiguredTableAssociation {
|
|
@@ -987,12 +1132,18 @@ export interface ConfiguredTableAssociation {
|
|
|
987
1132
|
*/
|
|
988
1133
|
updateTime: Date | undefined;
|
|
989
1134
|
}
|
|
1135
|
+
/**
|
|
1136
|
+
* @public
|
|
1137
|
+
*/
|
|
990
1138
|
export interface CreateConfiguredTableAssociationOutput {
|
|
991
1139
|
/**
|
|
992
1140
|
* <p>The entire configured table association object.</p>
|
|
993
1141
|
*/
|
|
994
1142
|
configuredTableAssociation: ConfiguredTableAssociation | undefined;
|
|
995
1143
|
}
|
|
1144
|
+
/**
|
|
1145
|
+
* @public
|
|
1146
|
+
*/
|
|
996
1147
|
export interface DeleteConfiguredTableAssociationInput {
|
|
997
1148
|
/**
|
|
998
1149
|
* <p>The unique ID for the configured table association to be deleted. Currently accepts the configured table ID.</p>
|
|
@@ -1004,8 +1155,14 @@ export interface DeleteConfiguredTableAssociationInput {
|
|
|
1004
1155
|
*/
|
|
1005
1156
|
membershipIdentifier: string | undefined;
|
|
1006
1157
|
}
|
|
1158
|
+
/**
|
|
1159
|
+
* @public
|
|
1160
|
+
*/
|
|
1007
1161
|
export interface DeleteConfiguredTableAssociationOutput {
|
|
1008
1162
|
}
|
|
1163
|
+
/**
|
|
1164
|
+
* @public
|
|
1165
|
+
*/
|
|
1009
1166
|
export interface GetConfiguredTableAssociationInput {
|
|
1010
1167
|
/**
|
|
1011
1168
|
* <p>The unique ID for the configured table association to retrieve. Currently accepts the configured table ID.</p>
|
|
@@ -1017,12 +1174,18 @@ export interface GetConfiguredTableAssociationInput {
|
|
|
1017
1174
|
*/
|
|
1018
1175
|
membershipIdentifier: string | undefined;
|
|
1019
1176
|
}
|
|
1177
|
+
/**
|
|
1178
|
+
* @public
|
|
1179
|
+
*/
|
|
1020
1180
|
export interface GetConfiguredTableAssociationOutput {
|
|
1021
1181
|
/**
|
|
1022
1182
|
* <p>The entire configured table association object.</p>
|
|
1023
1183
|
*/
|
|
1024
1184
|
configuredTableAssociation: ConfiguredTableAssociation | undefined;
|
|
1025
1185
|
}
|
|
1186
|
+
/**
|
|
1187
|
+
* @public
|
|
1188
|
+
*/
|
|
1026
1189
|
export interface ListConfiguredTableAssociationsInput {
|
|
1027
1190
|
/**
|
|
1028
1191
|
* <p>A unique identifier for the membership to list configured table associations for. Currently accepts the membership ID.</p>
|
|
@@ -1038,6 +1201,7 @@ export interface ListConfiguredTableAssociationsInput {
|
|
|
1038
1201
|
maxResults?: number;
|
|
1039
1202
|
}
|
|
1040
1203
|
/**
|
|
1204
|
+
* @public
|
|
1041
1205
|
* <p>The configured table association summary for the objects listed by the request.</p>
|
|
1042
1206
|
*/
|
|
1043
1207
|
export interface ConfiguredTableAssociationSummary {
|
|
@@ -1076,6 +1240,9 @@ export interface ConfiguredTableAssociationSummary {
|
|
|
1076
1240
|
*/
|
|
1077
1241
|
arn: string | undefined;
|
|
1078
1242
|
}
|
|
1243
|
+
/**
|
|
1244
|
+
* @public
|
|
1245
|
+
*/
|
|
1079
1246
|
export interface ListConfiguredTableAssociationsOutput {
|
|
1080
1247
|
/**
|
|
1081
1248
|
* <p>The retrieved list of configured table associations.</p>
|
|
@@ -1086,6 +1253,9 @@ export interface ListConfiguredTableAssociationsOutput {
|
|
|
1086
1253
|
*/
|
|
1087
1254
|
nextToken?: string;
|
|
1088
1255
|
}
|
|
1256
|
+
/**
|
|
1257
|
+
* @public
|
|
1258
|
+
*/
|
|
1089
1259
|
export interface UpdateConfiguredTableAssociationInput {
|
|
1090
1260
|
/**
|
|
1091
1261
|
* <p>The unique identifier for the configured table association to update. Currently accepts the configured table association ID.</p>
|
|
@@ -1105,6 +1275,9 @@ export interface UpdateConfiguredTableAssociationInput {
|
|
|
1105
1275
|
*/
|
|
1106
1276
|
roleArn?: string;
|
|
1107
1277
|
}
|
|
1278
|
+
/**
|
|
1279
|
+
* @public
|
|
1280
|
+
*/
|
|
1108
1281
|
export interface UpdateConfiguredTableAssociationOutput {
|
|
1109
1282
|
/**
|
|
1110
1283
|
* <p>The entire updated configured table association.</p>
|
|
@@ -1112,6 +1285,7 @@ export interface UpdateConfiguredTableAssociationOutput {
|
|
|
1112
1285
|
configuredTableAssociation: ConfiguredTableAssociation | undefined;
|
|
1113
1286
|
}
|
|
1114
1287
|
/**
|
|
1288
|
+
* @public
|
|
1115
1289
|
* <p>A reference to a table within an AWS Glue data catalog.</p>
|
|
1116
1290
|
*/
|
|
1117
1291
|
export interface GlueTableReference {
|
|
@@ -1125,10 +1299,14 @@ export interface GlueTableReference {
|
|
|
1125
1299
|
databaseName: string | undefined;
|
|
1126
1300
|
}
|
|
1127
1301
|
/**
|
|
1302
|
+
* @public
|
|
1128
1303
|
* <p>A pointer to the dataset that underlies this table. Currently, this can only be an AWS
|
|
1129
1304
|
* Glue table.</p>
|
|
1130
1305
|
*/
|
|
1131
1306
|
export type TableReference = TableReference.GlueMember | TableReference.$UnknownMember;
|
|
1307
|
+
/**
|
|
1308
|
+
* @public
|
|
1309
|
+
*/
|
|
1132
1310
|
export declare namespace TableReference {
|
|
1133
1311
|
/**
|
|
1134
1312
|
* <p>If present, a reference to the AWS Glue table referred to by this table
|
|
@@ -1148,6 +1326,9 @@ export declare namespace TableReference {
|
|
|
1148
1326
|
}
|
|
1149
1327
|
const visit: <T>(value: TableReference, visitor: Visitor<T>) => T;
|
|
1150
1328
|
}
|
|
1329
|
+
/**
|
|
1330
|
+
* @public
|
|
1331
|
+
*/
|
|
1151
1332
|
export interface CreateConfiguredTableInput {
|
|
1152
1333
|
/**
|
|
1153
1334
|
* <p>The name of the configured table.</p>
|
|
@@ -1177,11 +1358,15 @@ export interface CreateConfiguredTableInput {
|
|
|
1177
1358
|
*/
|
|
1178
1359
|
tags?: Record<string, string>;
|
|
1179
1360
|
}
|
|
1361
|
+
/**
|
|
1362
|
+
* @public
|
|
1363
|
+
*/
|
|
1180
1364
|
export declare enum ConfiguredTableAnalysisRuleType {
|
|
1181
1365
|
AGGREGATION = "AGGREGATION",
|
|
1182
1366
|
LIST = "LIST"
|
|
1183
1367
|
}
|
|
1184
1368
|
/**
|
|
1369
|
+
* @public
|
|
1185
1370
|
* <p>A table that has been configured for use in a collaboration.</p>
|
|
1186
1371
|
*/
|
|
1187
1372
|
export interface ConfiguredTable {
|
|
@@ -1227,6 +1412,9 @@ export interface ConfiguredTable {
|
|
|
1227
1412
|
*/
|
|
1228
1413
|
allowedColumns: string[] | undefined;
|
|
1229
1414
|
}
|
|
1415
|
+
/**
|
|
1416
|
+
* @public
|
|
1417
|
+
*/
|
|
1230
1418
|
export interface CreateConfiguredTableOutput {
|
|
1231
1419
|
/**
|
|
1232
1420
|
* <p>The created configured table.</p>
|
|
@@ -1234,9 +1422,13 @@ export interface CreateConfiguredTableOutput {
|
|
|
1234
1422
|
configuredTable: ConfiguredTable | undefined;
|
|
1235
1423
|
}
|
|
1236
1424
|
/**
|
|
1425
|
+
* @public
|
|
1237
1426
|
* <p>Controls on the query specifications that can be run on a configured table.</p>
|
|
1238
1427
|
*/
|
|
1239
1428
|
export type ConfiguredTableAnalysisRulePolicyV1 = ConfiguredTableAnalysisRulePolicyV1.AggregationMember | ConfiguredTableAnalysisRulePolicyV1.ListMember | ConfiguredTableAnalysisRulePolicyV1.$UnknownMember;
|
|
1429
|
+
/**
|
|
1430
|
+
* @public
|
|
1431
|
+
*/
|
|
1240
1432
|
export declare namespace ConfiguredTableAnalysisRulePolicyV1 {
|
|
1241
1433
|
/**
|
|
1242
1434
|
* <p>Analysis rule type that enables only list queries on a configured table.</p>
|
|
@@ -1267,9 +1459,13 @@ export declare namespace ConfiguredTableAnalysisRulePolicyV1 {
|
|
|
1267
1459
|
const visit: <T>(value: ConfiguredTableAnalysisRulePolicyV1, visitor: Visitor<T>) => T;
|
|
1268
1460
|
}
|
|
1269
1461
|
/**
|
|
1462
|
+
* @public
|
|
1270
1463
|
* <p>Controls on the query specifications that can be run on a configured table.</p>
|
|
1271
1464
|
*/
|
|
1272
1465
|
export type ConfiguredTableAnalysisRulePolicy = ConfiguredTableAnalysisRulePolicy.V1Member | ConfiguredTableAnalysisRulePolicy.$UnknownMember;
|
|
1466
|
+
/**
|
|
1467
|
+
* @public
|
|
1468
|
+
*/
|
|
1273
1469
|
export declare namespace ConfiguredTableAnalysisRulePolicy {
|
|
1274
1470
|
/**
|
|
1275
1471
|
* <p>Controls on the query specifications that can be run on a configured table.</p>
|
|
@@ -1288,6 +1484,9 @@ export declare namespace ConfiguredTableAnalysisRulePolicy {
|
|
|
1288
1484
|
}
|
|
1289
1485
|
const visit: <T>(value: ConfiguredTableAnalysisRulePolicy, visitor: Visitor<T>) => T;
|
|
1290
1486
|
}
|
|
1487
|
+
/**
|
|
1488
|
+
* @public
|
|
1489
|
+
*/
|
|
1291
1490
|
export interface CreateConfiguredTableAnalysisRuleInput {
|
|
1292
1491
|
/**
|
|
1293
1492
|
* <p>The identifier for the configured table to create the analysis rule for. Currently accepts the configured table ID. </p>
|
|
@@ -1303,6 +1502,7 @@ export interface CreateConfiguredTableAnalysisRuleInput {
|
|
|
1303
1502
|
analysisRulePolicy: ConfiguredTableAnalysisRulePolicy | undefined;
|
|
1304
1503
|
}
|
|
1305
1504
|
/**
|
|
1505
|
+
* @public
|
|
1306
1506
|
* <p>A configured table analysis rule, which limits how data for this table can be used.</p>
|
|
1307
1507
|
*/
|
|
1308
1508
|
export interface ConfiguredTableAnalysisRule {
|
|
@@ -1331,12 +1531,18 @@ export interface ConfiguredTableAnalysisRule {
|
|
|
1331
1531
|
*/
|
|
1332
1532
|
updateTime: Date | undefined;
|
|
1333
1533
|
}
|
|
1534
|
+
/**
|
|
1535
|
+
* @public
|
|
1536
|
+
*/
|
|
1334
1537
|
export interface CreateConfiguredTableAnalysisRuleOutput {
|
|
1335
1538
|
/**
|
|
1336
1539
|
* <p>The entire created analysis rule.</p>
|
|
1337
1540
|
*/
|
|
1338
1541
|
analysisRule: ConfiguredTableAnalysisRule | undefined;
|
|
1339
1542
|
}
|
|
1543
|
+
/**
|
|
1544
|
+
* @public
|
|
1545
|
+
*/
|
|
1340
1546
|
export interface DeleteConfiguredTableInput {
|
|
1341
1547
|
/**
|
|
1342
1548
|
* <p>The unique ID for the configured table to delete.</p>
|
|
@@ -1344,10 +1550,14 @@ export interface DeleteConfiguredTableInput {
|
|
|
1344
1550
|
configuredTableIdentifier: string | undefined;
|
|
1345
1551
|
}
|
|
1346
1552
|
/**
|
|
1553
|
+
* @public
|
|
1347
1554
|
* <p>The empty output for a successful deletion.</p>
|
|
1348
1555
|
*/
|
|
1349
1556
|
export interface DeleteConfiguredTableOutput {
|
|
1350
1557
|
}
|
|
1558
|
+
/**
|
|
1559
|
+
* @public
|
|
1560
|
+
*/
|
|
1351
1561
|
export interface DeleteConfiguredTableAnalysisRuleInput {
|
|
1352
1562
|
/**
|
|
1353
1563
|
* <p>The unique identifier for the configured table that the analysis rule applies to.
|
|
@@ -1360,22 +1570,32 @@ export interface DeleteConfiguredTableAnalysisRuleInput {
|
|
|
1360
1570
|
analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
|
|
1361
1571
|
}
|
|
1362
1572
|
/**
|
|
1573
|
+
* @public
|
|
1363
1574
|
* <p>An empty response that indicates a successful delete.</p>
|
|
1364
1575
|
*/
|
|
1365
1576
|
export interface DeleteConfiguredTableAnalysisRuleOutput {
|
|
1366
1577
|
}
|
|
1578
|
+
/**
|
|
1579
|
+
* @public
|
|
1580
|
+
*/
|
|
1367
1581
|
export interface GetConfiguredTableInput {
|
|
1368
1582
|
/**
|
|
1369
1583
|
* <p>The unique ID for the configured table to retrieve.</p>
|
|
1370
1584
|
*/
|
|
1371
1585
|
configuredTableIdentifier: string | undefined;
|
|
1372
1586
|
}
|
|
1587
|
+
/**
|
|
1588
|
+
* @public
|
|
1589
|
+
*/
|
|
1373
1590
|
export interface GetConfiguredTableOutput {
|
|
1374
1591
|
/**
|
|
1375
1592
|
* <p>The retrieved configured table.</p>
|
|
1376
1593
|
*/
|
|
1377
1594
|
configuredTable: ConfiguredTable | undefined;
|
|
1378
1595
|
}
|
|
1596
|
+
/**
|
|
1597
|
+
* @public
|
|
1598
|
+
*/
|
|
1379
1599
|
export interface GetConfiguredTableAnalysisRuleInput {
|
|
1380
1600
|
/**
|
|
1381
1601
|
* <p>The unique identifier for the configured table to retrieve. Currently accepts the configured table ID.</p>
|
|
@@ -1386,12 +1606,18 @@ export interface GetConfiguredTableAnalysisRuleInput {
|
|
|
1386
1606
|
*/
|
|
1387
1607
|
analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
|
|
1388
1608
|
}
|
|
1609
|
+
/**
|
|
1610
|
+
* @public
|
|
1611
|
+
*/
|
|
1389
1612
|
export interface GetConfiguredTableAnalysisRuleOutput {
|
|
1390
1613
|
/**
|
|
1391
1614
|
* <p>The entire analysis rule output.</p>
|
|
1392
1615
|
*/
|
|
1393
1616
|
analysisRule: ConfiguredTableAnalysisRule | undefined;
|
|
1394
1617
|
}
|
|
1618
|
+
/**
|
|
1619
|
+
* @public
|
|
1620
|
+
*/
|
|
1395
1621
|
export interface ListConfiguredTablesInput {
|
|
1396
1622
|
/**
|
|
1397
1623
|
* <p>The token value retrieved from a previous call to access the next page of results.</p>
|
|
@@ -1403,6 +1629,7 @@ export interface ListConfiguredTablesInput {
|
|
|
1403
1629
|
maxResults?: number;
|
|
1404
1630
|
}
|
|
1405
1631
|
/**
|
|
1632
|
+
* @public
|
|
1406
1633
|
* <p>The configured table summary for the objects listed by the request.</p>
|
|
1407
1634
|
*/
|
|
1408
1635
|
export interface ConfiguredTableSummary {
|
|
@@ -1435,6 +1662,9 @@ export interface ConfiguredTableSummary {
|
|
|
1435
1662
|
*/
|
|
1436
1663
|
analysisMethod: AnalysisMethod | string | undefined;
|
|
1437
1664
|
}
|
|
1665
|
+
/**
|
|
1666
|
+
* @public
|
|
1667
|
+
*/
|
|
1438
1668
|
export interface ListConfiguredTablesOutput {
|
|
1439
1669
|
/**
|
|
1440
1670
|
* <p>The configured tables listed by the request.</p>
|
|
@@ -1445,6 +1675,9 @@ export interface ListConfiguredTablesOutput {
|
|
|
1445
1675
|
*/
|
|
1446
1676
|
nextToken?: string;
|
|
1447
1677
|
}
|
|
1678
|
+
/**
|
|
1679
|
+
* @public
|
|
1680
|
+
*/
|
|
1448
1681
|
export interface UpdateConfiguredTableInput {
|
|
1449
1682
|
/**
|
|
1450
1683
|
* <p>The identifier for the configured table to update. Currently accepts the configured table ID.</p>
|
|
@@ -1459,12 +1692,18 @@ export interface UpdateConfiguredTableInput {
|
|
|
1459
1692
|
*/
|
|
1460
1693
|
description?: string;
|
|
1461
1694
|
}
|
|
1695
|
+
/**
|
|
1696
|
+
* @public
|
|
1697
|
+
*/
|
|
1462
1698
|
export interface UpdateConfiguredTableOutput {
|
|
1463
1699
|
/**
|
|
1464
1700
|
* <p>The updated configured table.</p>
|
|
1465
1701
|
*/
|
|
1466
1702
|
configuredTable: ConfiguredTable | undefined;
|
|
1467
1703
|
}
|
|
1704
|
+
/**
|
|
1705
|
+
* @public
|
|
1706
|
+
*/
|
|
1468
1707
|
export interface UpdateConfiguredTableAnalysisRuleInput {
|
|
1469
1708
|
/**
|
|
1470
1709
|
* <p>The unique identifier for the configured table that the analysis rule applies to.
|
|
@@ -1480,28 +1719,43 @@ export interface UpdateConfiguredTableAnalysisRuleInput {
|
|
|
1480
1719
|
*/
|
|
1481
1720
|
analysisRulePolicy: ConfiguredTableAnalysisRulePolicy | undefined;
|
|
1482
1721
|
}
|
|
1722
|
+
/**
|
|
1723
|
+
* @public
|
|
1724
|
+
*/
|
|
1483
1725
|
export interface UpdateConfiguredTableAnalysisRuleOutput {
|
|
1484
1726
|
/**
|
|
1485
1727
|
* <p>The entire updated analysis rule.</p>
|
|
1486
1728
|
*/
|
|
1487
1729
|
analysisRule: ConfiguredTableAnalysisRule | undefined;
|
|
1488
1730
|
}
|
|
1731
|
+
/**
|
|
1732
|
+
* @public
|
|
1733
|
+
*/
|
|
1489
1734
|
export interface ListTagsForResourceInput {
|
|
1490
1735
|
/**
|
|
1491
1736
|
* <p>The Amazon Resource Name (ARN) associated with the resource you want to list tags on.</p>
|
|
1492
1737
|
*/
|
|
1493
1738
|
resourceArn: string | undefined;
|
|
1494
1739
|
}
|
|
1740
|
+
/**
|
|
1741
|
+
* @public
|
|
1742
|
+
*/
|
|
1495
1743
|
export interface ListTagsForResourceOutput {
|
|
1496
1744
|
/**
|
|
1497
1745
|
* <p>A map of objects specifying each key name and value.</p>
|
|
1498
1746
|
*/
|
|
1499
1747
|
tags: Record<string, string> | undefined;
|
|
1500
1748
|
}
|
|
1749
|
+
/**
|
|
1750
|
+
* @public
|
|
1751
|
+
*/
|
|
1501
1752
|
export declare enum MembershipQueryLogStatus {
|
|
1502
1753
|
DISABLED = "DISABLED",
|
|
1503
1754
|
ENABLED = "ENABLED"
|
|
1504
1755
|
}
|
|
1756
|
+
/**
|
|
1757
|
+
* @public
|
|
1758
|
+
*/
|
|
1505
1759
|
export interface CreateMembershipInput {
|
|
1506
1760
|
/**
|
|
1507
1761
|
* <p>The unique ID for the associated collaboration.</p>
|
|
@@ -1520,12 +1774,16 @@ export interface CreateMembershipInput {
|
|
|
1520
1774
|
*/
|
|
1521
1775
|
tags?: Record<string, string>;
|
|
1522
1776
|
}
|
|
1777
|
+
/**
|
|
1778
|
+
* @public
|
|
1779
|
+
*/
|
|
1523
1780
|
export declare enum MembershipStatus {
|
|
1524
1781
|
ACTIVE = "ACTIVE",
|
|
1525
1782
|
COLLABORATION_DELETED = "COLLABORATION_DELETED",
|
|
1526
1783
|
REMOVED = "REMOVED"
|
|
1527
1784
|
}
|
|
1528
1785
|
/**
|
|
1786
|
+
* @public
|
|
1529
1787
|
* <p>The membership object.</p>
|
|
1530
1788
|
*/
|
|
1531
1789
|
export interface Membership {
|
|
@@ -1579,32 +1837,50 @@ export interface Membership {
|
|
|
1579
1837
|
*/
|
|
1580
1838
|
queryLogStatus: MembershipQueryLogStatus | string | undefined;
|
|
1581
1839
|
}
|
|
1840
|
+
/**
|
|
1841
|
+
* @public
|
|
1842
|
+
*/
|
|
1582
1843
|
export interface CreateMembershipOutput {
|
|
1583
1844
|
/**
|
|
1584
1845
|
* <p>The membership that was created.</p>
|
|
1585
1846
|
*/
|
|
1586
1847
|
membership: Membership | undefined;
|
|
1587
1848
|
}
|
|
1849
|
+
/**
|
|
1850
|
+
* @public
|
|
1851
|
+
*/
|
|
1588
1852
|
export interface DeleteMembershipInput {
|
|
1589
1853
|
/**
|
|
1590
1854
|
* <p>The identifier for a membership resource.</p>
|
|
1591
1855
|
*/
|
|
1592
1856
|
membershipIdentifier: string | undefined;
|
|
1593
1857
|
}
|
|
1858
|
+
/**
|
|
1859
|
+
* @public
|
|
1860
|
+
*/
|
|
1594
1861
|
export interface DeleteMembershipOutput {
|
|
1595
1862
|
}
|
|
1863
|
+
/**
|
|
1864
|
+
* @public
|
|
1865
|
+
*/
|
|
1596
1866
|
export interface GetMembershipInput {
|
|
1597
1867
|
/**
|
|
1598
1868
|
* <p>The identifier for a membership resource.</p>
|
|
1599
1869
|
*/
|
|
1600
1870
|
membershipIdentifier: string | undefined;
|
|
1601
1871
|
}
|
|
1872
|
+
/**
|
|
1873
|
+
* @public
|
|
1874
|
+
*/
|
|
1602
1875
|
export interface GetMembershipOutput {
|
|
1603
1876
|
/**
|
|
1604
1877
|
* <p>The membership retrieved for the provided identifier.</p>
|
|
1605
1878
|
*/
|
|
1606
1879
|
membership: Membership | undefined;
|
|
1607
1880
|
}
|
|
1881
|
+
/**
|
|
1882
|
+
* @public
|
|
1883
|
+
*/
|
|
1608
1884
|
export interface GetProtectedQueryInput {
|
|
1609
1885
|
/**
|
|
1610
1886
|
* <p>The identifier for a membership in a protected query instance.</p>
|
|
@@ -1616,6 +1892,7 @@ export interface GetProtectedQueryInput {
|
|
|
1616
1892
|
protectedQueryIdentifier: string | undefined;
|
|
1617
1893
|
}
|
|
1618
1894
|
/**
|
|
1895
|
+
* @public
|
|
1619
1896
|
* <p>Details of errors thrown by the protected query.</p>
|
|
1620
1897
|
*/
|
|
1621
1898
|
export interface ProtectedQueryError {
|
|
@@ -1629,6 +1906,7 @@ export interface ProtectedQueryError {
|
|
|
1629
1906
|
code: string | undefined;
|
|
1630
1907
|
}
|
|
1631
1908
|
/**
|
|
1909
|
+
* @public
|
|
1632
1910
|
* <p>Contains output information for protected queries with an S3 output type.</p>
|
|
1633
1911
|
*/
|
|
1634
1912
|
export interface ProtectedQueryS3Output {
|
|
@@ -1638,9 +1916,13 @@ export interface ProtectedQueryS3Output {
|
|
|
1638
1916
|
location: string | undefined;
|
|
1639
1917
|
}
|
|
1640
1918
|
/**
|
|
1919
|
+
* @public
|
|
1641
1920
|
* <p>Contains details about the protected query output.</p>
|
|
1642
1921
|
*/
|
|
1643
1922
|
export type ProtectedQueryOutput = ProtectedQueryOutput.S3Member | ProtectedQueryOutput.$UnknownMember;
|
|
1923
|
+
/**
|
|
1924
|
+
* @public
|
|
1925
|
+
*/
|
|
1644
1926
|
export declare namespace ProtectedQueryOutput {
|
|
1645
1927
|
/**
|
|
1646
1928
|
* <p>If present, the output for a protected query with an `S3` output type.</p>
|
|
@@ -1660,6 +1942,7 @@ export declare namespace ProtectedQueryOutput {
|
|
|
1660
1942
|
const visit: <T>(value: ProtectedQueryOutput, visitor: Visitor<T>) => T;
|
|
1661
1943
|
}
|
|
1662
1944
|
/**
|
|
1945
|
+
* @public
|
|
1663
1946
|
* <p>Details about the query results.</p>
|
|
1664
1947
|
*/
|
|
1665
1948
|
export interface ProtectedQueryResult {
|
|
@@ -1668,11 +1951,15 @@ export interface ProtectedQueryResult {
|
|
|
1668
1951
|
*/
|
|
1669
1952
|
output: ProtectedQueryOutput | undefined;
|
|
1670
1953
|
}
|
|
1954
|
+
/**
|
|
1955
|
+
* @public
|
|
1956
|
+
*/
|
|
1671
1957
|
export declare enum ResultFormat {
|
|
1672
1958
|
CSV = "CSV",
|
|
1673
1959
|
PARQUET = "PARQUET"
|
|
1674
1960
|
}
|
|
1675
1961
|
/**
|
|
1962
|
+
* @public
|
|
1676
1963
|
* <p>Contains the configuration to write the query results to S3.</p>
|
|
1677
1964
|
*/
|
|
1678
1965
|
export interface ProtectedQueryS3OutputConfiguration {
|
|
@@ -1690,9 +1977,13 @@ export interface ProtectedQueryS3OutputConfiguration {
|
|
|
1690
1977
|
keyPrefix?: string;
|
|
1691
1978
|
}
|
|
1692
1979
|
/**
|
|
1980
|
+
* @public
|
|
1693
1981
|
* <p>Contains configuration details for protected query output.</p>
|
|
1694
1982
|
*/
|
|
1695
1983
|
export type ProtectedQueryOutputConfiguration = ProtectedQueryOutputConfiguration.S3Member | ProtectedQueryOutputConfiguration.$UnknownMember;
|
|
1984
|
+
/**
|
|
1985
|
+
* @public
|
|
1986
|
+
*/
|
|
1696
1987
|
export declare namespace ProtectedQueryOutputConfiguration {
|
|
1697
1988
|
/**
|
|
1698
1989
|
* <p>Required configuration for a protected query with an `S3` output type.</p>
|
|
@@ -1712,6 +2003,7 @@ export declare namespace ProtectedQueryOutputConfiguration {
|
|
|
1712
2003
|
const visit: <T>(value: ProtectedQueryOutputConfiguration, visitor: Visitor<T>) => T;
|
|
1713
2004
|
}
|
|
1714
2005
|
/**
|
|
2006
|
+
* @public
|
|
1715
2007
|
* <p>Contains configurations for protected query results.</p>
|
|
1716
2008
|
*/
|
|
1717
2009
|
export interface ProtectedQueryResultConfiguration {
|
|
@@ -1721,6 +2013,7 @@ export interface ProtectedQueryResultConfiguration {
|
|
|
1721
2013
|
outputConfiguration: ProtectedQueryOutputConfiguration | undefined;
|
|
1722
2014
|
}
|
|
1723
2015
|
/**
|
|
2016
|
+
* @public
|
|
1724
2017
|
* <p>The parameters for the SQL type Protected Query.</p>
|
|
1725
2018
|
*/
|
|
1726
2019
|
export interface ProtectedQuerySQLParameters {
|
|
@@ -1730,6 +2023,7 @@ export interface ProtectedQuerySQLParameters {
|
|
|
1730
2023
|
queryString: string | undefined;
|
|
1731
2024
|
}
|
|
1732
2025
|
/**
|
|
2026
|
+
* @public
|
|
1733
2027
|
* <p>Contains statistics about the execution of the protected query.</p>
|
|
1734
2028
|
*/
|
|
1735
2029
|
export interface ProtectedQueryStatistics {
|
|
@@ -1738,6 +2032,9 @@ export interface ProtectedQueryStatistics {
|
|
|
1738
2032
|
*/
|
|
1739
2033
|
totalDurationInMillis?: number;
|
|
1740
2034
|
}
|
|
2035
|
+
/**
|
|
2036
|
+
* @public
|
|
2037
|
+
*/
|
|
1741
2038
|
export declare enum ProtectedQueryStatus {
|
|
1742
2039
|
CANCELLED = "CANCELLED",
|
|
1743
2040
|
CANCELLING = "CANCELLING",
|
|
@@ -1748,6 +2045,7 @@ export declare enum ProtectedQueryStatus {
|
|
|
1748
2045
|
TIMED_OUT = "TIMED_OUT"
|
|
1749
2046
|
}
|
|
1750
2047
|
/**
|
|
2048
|
+
* @public
|
|
1751
2049
|
* <p>The parameters for an AWS Clean Rooms protected query.</p>
|
|
1752
2050
|
*/
|
|
1753
2051
|
export interface ProtectedQuery {
|
|
@@ -1792,12 +2090,18 @@ export interface ProtectedQuery {
|
|
|
1792
2090
|
*/
|
|
1793
2091
|
error?: ProtectedQueryError;
|
|
1794
2092
|
}
|
|
2093
|
+
/**
|
|
2094
|
+
* @public
|
|
2095
|
+
*/
|
|
1795
2096
|
export interface GetProtectedQueryOutput {
|
|
1796
2097
|
/**
|
|
1797
2098
|
* <p>The query processing metadata.</p>
|
|
1798
2099
|
*/
|
|
1799
2100
|
protectedQuery: ProtectedQuery | undefined;
|
|
1800
2101
|
}
|
|
2102
|
+
/**
|
|
2103
|
+
* @public
|
|
2104
|
+
*/
|
|
1801
2105
|
export interface ListMembershipsInput {
|
|
1802
2106
|
/**
|
|
1803
2107
|
* <p>The token value retrieved from a previous call to access the next page of results.</p>
|
|
@@ -1813,6 +2117,7 @@ export interface ListMembershipsInput {
|
|
|
1813
2117
|
status?: MembershipStatus | string;
|
|
1814
2118
|
}
|
|
1815
2119
|
/**
|
|
2120
|
+
* @public
|
|
1816
2121
|
* <p>The membership object listed by the request.</p>
|
|
1817
2122
|
*/
|
|
1818
2123
|
export interface MembershipSummary {
|
|
@@ -1861,6 +2166,9 @@ export interface MembershipSummary {
|
|
|
1861
2166
|
*/
|
|
1862
2167
|
memberAbilities: (MemberAbility | string)[] | undefined;
|
|
1863
2168
|
}
|
|
2169
|
+
/**
|
|
2170
|
+
* @public
|
|
2171
|
+
*/
|
|
1864
2172
|
export interface ListMembershipsOutput {
|
|
1865
2173
|
/**
|
|
1866
2174
|
* <p>The token value retrieved from a previous call to access the next page of results.</p>
|
|
@@ -1871,6 +2179,9 @@ export interface ListMembershipsOutput {
|
|
|
1871
2179
|
*/
|
|
1872
2180
|
membershipSummaries: MembershipSummary[] | undefined;
|
|
1873
2181
|
}
|
|
2182
|
+
/**
|
|
2183
|
+
* @public
|
|
2184
|
+
*/
|
|
1874
2185
|
export interface ListProtectedQueriesInput {
|
|
1875
2186
|
/**
|
|
1876
2187
|
* <p>The identifier for the membership in the collaboration.</p>
|
|
@@ -1892,6 +2203,7 @@ export interface ListProtectedQueriesInput {
|
|
|
1892
2203
|
maxResults?: number;
|
|
1893
2204
|
}
|
|
1894
2205
|
/**
|
|
2206
|
+
* @public
|
|
1895
2207
|
* <p>The protected query summary for the objects listed by the request.</p>
|
|
1896
2208
|
*/
|
|
1897
2209
|
export interface ProtectedQuerySummary {
|
|
@@ -1916,6 +2228,9 @@ export interface ProtectedQuerySummary {
|
|
|
1916
2228
|
*/
|
|
1917
2229
|
status: ProtectedQueryStatus | string | undefined;
|
|
1918
2230
|
}
|
|
2231
|
+
/**
|
|
2232
|
+
* @public
|
|
2233
|
+
*/
|
|
1919
2234
|
export interface ListProtectedQueriesOutput {
|
|
1920
2235
|
/**
|
|
1921
2236
|
* <p>The token value retrieved from a previous call to access the next page of results.</p>
|
|
@@ -1926,9 +2241,15 @@ export interface ListProtectedQueriesOutput {
|
|
|
1926
2241
|
*/
|
|
1927
2242
|
protectedQueries: ProtectedQuerySummary[] | undefined;
|
|
1928
2243
|
}
|
|
2244
|
+
/**
|
|
2245
|
+
* @public
|
|
2246
|
+
*/
|
|
1929
2247
|
export declare enum ProtectedQueryType {
|
|
1930
2248
|
SQL = "SQL"
|
|
1931
2249
|
}
|
|
2250
|
+
/**
|
|
2251
|
+
* @public
|
|
2252
|
+
*/
|
|
1932
2253
|
export interface StartProtectedQueryInput {
|
|
1933
2254
|
/**
|
|
1934
2255
|
* <p>The type of the protected query to be started.</p>
|
|
@@ -1947,12 +2268,18 @@ export interface StartProtectedQueryInput {
|
|
|
1947
2268
|
*/
|
|
1948
2269
|
resultConfiguration: ProtectedQueryResultConfiguration | undefined;
|
|
1949
2270
|
}
|
|
2271
|
+
/**
|
|
2272
|
+
* @public
|
|
2273
|
+
*/
|
|
1950
2274
|
export interface StartProtectedQueryOutput {
|
|
1951
2275
|
/**
|
|
1952
2276
|
* <p>The protected query.</p>
|
|
1953
2277
|
*/
|
|
1954
2278
|
protectedQuery: ProtectedQuery | undefined;
|
|
1955
2279
|
}
|
|
2280
|
+
/**
|
|
2281
|
+
* @public
|
|
2282
|
+
*/
|
|
1956
2283
|
export interface UpdateMembershipInput {
|
|
1957
2284
|
/**
|
|
1958
2285
|
* <p>The unique identifier of the membership.</p>
|
|
@@ -1964,15 +2291,24 @@ export interface UpdateMembershipInput {
|
|
|
1964
2291
|
*/
|
|
1965
2292
|
queryLogStatus?: MembershipQueryLogStatus | string;
|
|
1966
2293
|
}
|
|
2294
|
+
/**
|
|
2295
|
+
* @public
|
|
2296
|
+
*/
|
|
1967
2297
|
export interface UpdateMembershipOutput {
|
|
1968
2298
|
/**
|
|
1969
2299
|
* <p>The membership object.</p>
|
|
1970
2300
|
*/
|
|
1971
2301
|
membership: Membership | undefined;
|
|
1972
2302
|
}
|
|
2303
|
+
/**
|
|
2304
|
+
* @public
|
|
2305
|
+
*/
|
|
1973
2306
|
export declare enum TargetProtectedQueryStatus {
|
|
1974
2307
|
CANCELLED = "CANCELLED"
|
|
1975
2308
|
}
|
|
2309
|
+
/**
|
|
2310
|
+
* @public
|
|
2311
|
+
*/
|
|
1976
2312
|
export interface UpdateProtectedQueryInput {
|
|
1977
2313
|
/**
|
|
1978
2314
|
* <p>The identifier for a member of a protected query instance.</p>
|
|
@@ -1987,12 +2323,18 @@ export interface UpdateProtectedQueryInput {
|
|
|
1987
2323
|
*/
|
|
1988
2324
|
targetStatus: TargetProtectedQueryStatus | string | undefined;
|
|
1989
2325
|
}
|
|
2326
|
+
/**
|
|
2327
|
+
* @public
|
|
2328
|
+
*/
|
|
1990
2329
|
export interface UpdateProtectedQueryOutput {
|
|
1991
2330
|
/**
|
|
1992
2331
|
* <p>The protected query output.</p>
|
|
1993
2332
|
*/
|
|
1994
2333
|
protectedQuery: ProtectedQuery | undefined;
|
|
1995
2334
|
}
|
|
2335
|
+
/**
|
|
2336
|
+
* @public
|
|
2337
|
+
*/
|
|
1996
2338
|
export interface TagResourceInput {
|
|
1997
2339
|
/**
|
|
1998
2340
|
* <p>The Amazon Resource Name (ARN) associated with the resource you want to tag.</p>
|
|
@@ -2003,8 +2345,14 @@ export interface TagResourceInput {
|
|
|
2003
2345
|
*/
|
|
2004
2346
|
tags: Record<string, string> | undefined;
|
|
2005
2347
|
}
|
|
2348
|
+
/**
|
|
2349
|
+
* @public
|
|
2350
|
+
*/
|
|
2006
2351
|
export interface TagResourceOutput {
|
|
2007
2352
|
}
|
|
2353
|
+
/**
|
|
2354
|
+
* @public
|
|
2355
|
+
*/
|
|
2008
2356
|
export interface UntagResourceInput {
|
|
2009
2357
|
/**
|
|
2010
2358
|
* <p>The Amazon Resource Name (ARN) associated with the resource you want to remove the tag from.</p>
|
|
@@ -2015,6 +2363,9 @@ export interface UntagResourceInput {
|
|
|
2015
2363
|
*/
|
|
2016
2364
|
tagKeys: string[] | undefined;
|
|
2017
2365
|
}
|
|
2366
|
+
/**
|
|
2367
|
+
* @public
|
|
2368
|
+
*/
|
|
2018
2369
|
export interface UntagResourceOutput {
|
|
2019
2370
|
}
|
|
2020
2371
|
/**
|