@aws-sdk/client-finspace-data 3.169.0 → 3.171.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.
Files changed (53) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/FinspaceData.d.ts +537 -160
  3. package/dist-types/ts3.4/FinspaceDataClient.d.ts +291 -104
  4. package/dist-types/ts3.4/commands/AssociateUserToPermissionGroupCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CreateChangesetCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/CreateDataViewCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/CreatePermissionGroupCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DeletePermissionGroupCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/DisableUserCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/DisassociateUserFromPermissionGroupCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/EnableUserCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/GetChangesetCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/GetDataViewCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/GetExternalDataViewAccessDetailsCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/GetPermissionGroupCommand.d.ts +36 -17
  20. package/dist-types/ts3.4/commands/GetProgrammaticAccessCredentialsCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/GetUserCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/GetWorkingLocationCommand.d.ts +36 -17
  23. package/dist-types/ts3.4/commands/ListChangesetsCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/ListDataViewsCommand.d.ts +35 -17
  25. package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/ListPermissionGroupsByUserCommand.d.ts +39 -17
  27. package/dist-types/ts3.4/commands/ListPermissionGroupsCommand.d.ts +39 -17
  28. package/dist-types/ts3.4/commands/ListUsersByPermissionGroupCommand.d.ts +39 -17
  29. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +32 -17
  30. package/dist-types/ts3.4/commands/ResetUserPasswordCommand.d.ts +36 -17
  31. package/dist-types/ts3.4/commands/UpdateChangesetCommand.d.ts +35 -17
  32. package/dist-types/ts3.4/commands/UpdateDatasetCommand.d.ts +35 -17
  33. package/dist-types/ts3.4/commands/UpdatePermissionGroupCommand.d.ts +39 -17
  34. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +32 -17
  35. package/dist-types/ts3.4/commands/index.d.ts +31 -31
  36. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  37. package/dist-types/ts3.4/index.d.ts +6 -6
  38. package/dist-types/ts3.4/models/FinspaceDataServiceException.d.ts +7 -6
  39. package/dist-types/ts3.4/models/index.d.ts +1 -1
  40. package/dist-types/ts3.4/models/models_0.d.ts +824 -1085
  41. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  42. package/dist-types/ts3.4/pagination/ListChangesetsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListDataViewsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListDatasetsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListPermissionGroupsPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  48. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +377 -95
  49. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  50. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  51. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  52. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  53. package/package.json +34 -34
@@ -1,1085 +1,824 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { FinspaceDataServiceException as __BaseException } from "./FinspaceDataServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
-
8
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
- }
10
- export declare enum ApiAccess {
11
- DISABLED = "DISABLED",
12
- ENABLED = "ENABLED"
13
- }
14
- export declare enum ApplicationPermission {
15
- AccessNotebooks = "AccessNotebooks",
16
- CreateDataset = "CreateDataset",
17
- GetTemporaryCredentials = "GetTemporaryCredentials",
18
- ManageAttributeSets = "ManageAttributeSets",
19
- ManageClusters = "ManageClusters",
20
- ManageUsersAndGroups = "ManageUsersAndGroups",
21
- ViewAuditData = "ViewAuditData"
22
- }
23
- export interface AssociateUserToPermissionGroupRequest {
24
-
25
- permissionGroupId: string | undefined;
26
-
27
- userId: string | undefined;
28
-
29
- clientToken?: string;
30
- }
31
- export interface AssociateUserToPermissionGroupResponse {
32
-
33
- statusCode?: number;
34
- }
35
-
36
- export declare class ConflictException extends __BaseException {
37
- readonly name: "ConflictException";
38
- readonly $fault: "client";
39
- reason?: string;
40
-
41
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
42
- }
43
-
44
- export declare class InternalServerException extends __BaseException {
45
- readonly name: "InternalServerException";
46
- readonly $fault: "server";
47
-
48
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
49
- }
50
-
51
- export declare class ResourceNotFoundException extends __BaseException {
52
- readonly name: "ResourceNotFoundException";
53
- readonly $fault: "client";
54
- reason?: string;
55
-
56
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
57
- }
58
-
59
- export declare class ThrottlingException extends __BaseException {
60
- readonly name: "ThrottlingException";
61
- readonly $fault: "client";
62
-
63
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
64
- }
65
-
66
- export declare class ValidationException extends __BaseException {
67
- readonly name: "ValidationException";
68
- readonly $fault: "client";
69
- reason?: string;
70
-
71
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
72
- }
73
-
74
- export interface AwsCredentials {
75
-
76
- accessKeyId?: string;
77
-
78
- secretAccessKey?: string;
79
-
80
- sessionToken?: string;
81
-
82
- expiration?: number;
83
- }
84
- export declare enum ChangeType {
85
- APPEND = "APPEND",
86
- MODIFY = "MODIFY",
87
- REPLACE = "REPLACE"
88
- }
89
-
90
- export interface CreateChangesetRequest {
91
-
92
- clientToken?: string;
93
-
94
- datasetId: string | undefined;
95
-
96
- changeType: ChangeType | string | undefined;
97
-
98
- sourceParams: Record<string, string> | undefined;
99
-
100
- formatParams: Record<string, string> | undefined;
101
- }
102
-
103
- export interface CreateChangesetResponse {
104
-
105
- datasetId?: string;
106
-
107
- changesetId?: string;
108
- }
109
-
110
- export declare class LimitExceededException extends __BaseException {
111
- readonly name: "LimitExceededException";
112
- readonly $fault: "client";
113
-
114
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
115
- }
116
- export declare enum DatasetKind {
117
- NON_TABULAR = "NON_TABULAR",
118
- TABULAR = "TABULAR"
119
- }
120
-
121
- export interface DatasetOwnerInfo {
122
-
123
- name?: string;
124
-
125
- phoneNumber?: string;
126
-
127
- email?: string;
128
- }
129
-
130
- export interface ResourcePermission {
131
-
132
- permission?: string;
133
- }
134
-
135
- export interface PermissionGroupParams {
136
-
137
- permissionGroupId?: string;
138
-
139
- datasetPermissions?: ResourcePermission[];
140
- }
141
- export declare enum ColumnDataType {
142
- BIGINT = "BIGINT",
143
- BINARY = "BINARY",
144
- BOOLEAN = "BOOLEAN",
145
- CHAR = "CHAR",
146
- DATE = "DATE",
147
- DATETIME = "DATETIME",
148
- DOUBLE = "DOUBLE",
149
- FLOAT = "FLOAT",
150
- INTEGER = "INTEGER",
151
- SMALLINT = "SMALLINT",
152
- STRING = "STRING",
153
- TINYINT = "TINYINT"
154
- }
155
-
156
- export interface ColumnDefinition {
157
-
158
- dataType?: ColumnDataType | string;
159
-
160
- columnName?: string;
161
-
162
- columnDescription?: string;
163
- }
164
-
165
- export interface SchemaDefinition {
166
-
167
- columns?: ColumnDefinition[];
168
-
169
- primaryKeyColumns?: string[];
170
- }
171
-
172
- export interface SchemaUnion {
173
-
174
- tabularSchemaConfig?: SchemaDefinition;
175
- }
176
-
177
- export interface CreateDatasetRequest {
178
-
179
- clientToken?: string;
180
-
181
- datasetTitle: string | undefined;
182
-
183
- kind: DatasetKind | string | undefined;
184
-
185
- datasetDescription?: string;
186
-
187
- ownerInfo?: DatasetOwnerInfo;
188
-
189
- permissionGroupParams: PermissionGroupParams | undefined;
190
-
191
- alias?: string;
192
-
193
- schemaDefinition?: SchemaUnion;
194
- }
195
-
196
- export interface CreateDatasetResponse {
197
-
198
- datasetId?: string;
199
- }
200
- export declare enum ExportFileFormat {
201
- DELIMITED_TEXT = "DELIMITED_TEXT",
202
- PARQUET = "PARQUET"
203
- }
204
-
205
- export interface DataViewDestinationTypeParams {
206
-
207
- destinationType: string | undefined;
208
-
209
- s3DestinationExportFileFormat?: ExportFileFormat | string;
210
-
211
- s3DestinationExportFileFormatOptions?: Record<string, string>;
212
- }
213
-
214
- export interface CreateDataViewRequest {
215
-
216
- clientToken?: string;
217
-
218
- datasetId: string | undefined;
219
-
220
- autoUpdate?: boolean;
221
-
222
- sortColumns?: string[];
223
-
224
- partitionColumns?: string[];
225
-
226
- asOfTimestamp?: number;
227
-
228
- destinationTypeParams: DataViewDestinationTypeParams | undefined;
229
- }
230
-
231
- export interface CreateDataViewResponse {
232
-
233
- datasetId?: string;
234
-
235
- dataViewId?: string;
236
- }
237
- export interface CreatePermissionGroupRequest {
238
-
239
- name: string | undefined;
240
-
241
- description?: string;
242
-
243
- applicationPermissions: (ApplicationPermission | string)[] | undefined;
244
-
245
- clientToken?: string;
246
- }
247
- export interface CreatePermissionGroupResponse {
248
-
249
- permissionGroupId?: string;
250
- }
251
- export declare enum UserType {
252
- APP_USER = "APP_USER",
253
- SUPER_USER = "SUPER_USER"
254
- }
255
- export interface CreateUserRequest {
256
-
257
- emailAddress: string | undefined;
258
-
259
- type: UserType | string | undefined;
260
-
261
- firstName?: string;
262
-
263
- lastName?: string;
264
-
265
- ApiAccess?: ApiAccess | string;
266
-
267
- apiAccessPrincipalArn?: string;
268
-
269
- clientToken?: string;
270
- }
271
- export interface CreateUserResponse {
272
-
273
- userId?: string;
274
- }
275
-
276
- export interface DeleteDatasetRequest {
277
-
278
- clientToken?: string;
279
-
280
- datasetId: string | undefined;
281
- }
282
-
283
- export interface DeleteDatasetResponse {
284
-
285
- datasetId?: string;
286
- }
287
- export interface DeletePermissionGroupRequest {
288
-
289
- permissionGroupId: string | undefined;
290
-
291
- clientToken?: string;
292
- }
293
- export interface DeletePermissionGroupResponse {
294
-
295
- permissionGroupId?: string;
296
- }
297
- export interface DisableUserRequest {
298
-
299
- userId: string | undefined;
300
-
301
- clientToken?: string;
302
- }
303
- export interface DisableUserResponse {
304
-
305
- userId?: string;
306
- }
307
- export interface DisassociateUserFromPermissionGroupRequest {
308
-
309
- permissionGroupId: string | undefined;
310
-
311
- userId: string | undefined;
312
-
313
- clientToken?: string;
314
- }
315
- export interface DisassociateUserFromPermissionGroupResponse {
316
-
317
- statusCode?: number;
318
- }
319
- export interface EnableUserRequest {
320
-
321
- userId: string | undefined;
322
-
323
- clientToken?: string;
324
- }
325
- export interface EnableUserResponse {
326
-
327
- userId?: string;
328
- }
329
-
330
- export interface GetChangesetRequest {
331
-
332
- datasetId: string | undefined;
333
-
334
- changesetId: string | undefined;
335
- }
336
- export declare enum ErrorCategory {
337
- ACCESS_DENIED = "ACCESS_DENIED",
338
- CANCELLED = "CANCELLED",
339
- INTERNAL_SERVICE_EXCEPTION = "INTERNAL_SERVICE_EXCEPTION",
340
- RESOURCE_NOT_FOUND = "RESOURCE_NOT_FOUND",
341
- SERVICE_QUOTA_EXCEEDED = "SERVICE_QUOTA_EXCEEDED",
342
- THROTTLING = "THROTTLING",
343
- USER_RECOVERABLE = "USER_RECOVERABLE",
344
- VALIDATION = "VALIDATION"
345
- }
346
-
347
- export interface ChangesetErrorInfo {
348
-
349
- errorMessage?: string;
350
-
351
- errorCategory?: ErrorCategory | string;
352
- }
353
- export declare enum IngestionStatus {
354
- FAILED = "FAILED",
355
- PENDING = "PENDING",
356
- RUNNING = "RUNNING",
357
- STOP_REQUESTED = "STOP_REQUESTED",
358
- SUCCESS = "SUCCESS"
359
- }
360
-
361
- export interface GetChangesetResponse {
362
-
363
- changesetId?: string;
364
-
365
- changesetArn?: string;
366
-
367
- datasetId?: string;
368
-
369
- changeType?: ChangeType | string;
370
-
371
- sourceParams?: Record<string, string>;
372
-
373
- formatParams?: Record<string, string>;
374
-
375
- createTime?: number;
376
-
377
- status?: IngestionStatus | string;
378
-
379
- errorInfo?: ChangesetErrorInfo;
380
-
381
- activeUntilTimestamp?: number;
382
-
383
- activeFromTimestamp?: number;
384
-
385
- updatesChangesetId?: string;
386
-
387
- updatedByChangesetId?: string;
388
- }
389
-
390
- export interface GetDatasetRequest {
391
-
392
- datasetId: string | undefined;
393
- }
394
- export declare enum DatasetStatus {
395
- FAILED = "FAILED",
396
- PENDING = "PENDING",
397
- RUNNING = "RUNNING",
398
- SUCCESS = "SUCCESS"
399
- }
400
-
401
- export interface GetDatasetResponse {
402
-
403
- datasetId?: string;
404
-
405
- datasetArn?: string;
406
-
407
- datasetTitle?: string;
408
-
409
- kind?: DatasetKind | string;
410
-
411
- datasetDescription?: string;
412
-
413
- createTime?: number;
414
-
415
- lastModifiedTime?: number;
416
-
417
- schemaDefinition?: SchemaUnion;
418
-
419
- alias?: string;
420
-
421
- status?: DatasetStatus | string;
422
- }
423
-
424
- export interface GetDataViewRequest {
425
-
426
- dataViewId: string | undefined;
427
-
428
- datasetId: string | undefined;
429
- }
430
-
431
- export interface DataViewErrorInfo {
432
-
433
- errorMessage?: string;
434
-
435
- errorCategory?: ErrorCategory | string;
436
- }
437
- export declare enum DataViewStatus {
438
- CANCELLED = "CANCELLED",
439
- FAILED = "FAILED",
440
- FAILED_CLEANUP_FAILED = "FAILED_CLEANUP_FAILED",
441
- PENDING = "PENDING",
442
- RUNNING = "RUNNING",
443
- STARTING = "STARTING",
444
- SUCCESS = "SUCCESS",
445
- TIMEOUT = "TIMEOUT"
446
- }
447
-
448
- export interface GetDataViewResponse {
449
-
450
- autoUpdate?: boolean;
451
-
452
- partitionColumns?: string[];
453
-
454
- datasetId?: string;
455
-
456
- asOfTimestamp?: number;
457
-
458
- errorInfo?: DataViewErrorInfo;
459
-
460
- lastModifiedTime?: number;
461
-
462
- createTime?: number;
463
-
464
- sortColumns?: string[];
465
-
466
- dataViewId?: string;
467
-
468
- dataViewArn?: string;
469
-
470
- destinationTypeParams?: DataViewDestinationTypeParams;
471
-
472
- status?: DataViewStatus | string;
473
- }
474
- export interface GetExternalDataViewAccessDetailsRequest {
475
-
476
- dataViewId: string | undefined;
477
-
478
- datasetId: string | undefined;
479
- }
480
-
481
- export interface S3Location {
482
-
483
- bucket: string | undefined;
484
-
485
- key: string | undefined;
486
- }
487
- export interface GetExternalDataViewAccessDetailsResponse {
488
-
489
- credentials?: AwsCredentials;
490
-
491
- s3Location?: S3Location;
492
- }
493
- export interface GetPermissionGroupRequest {
494
-
495
- permissionGroupId: string | undefined;
496
- }
497
- export declare enum PermissionGroupMembershipStatus {
498
- ADDITION_IN_PROGRESS = "ADDITION_IN_PROGRESS",
499
- ADDITION_SUCCESS = "ADDITION_SUCCESS",
500
- REMOVAL_IN_PROGRESS = "REMOVAL_IN_PROGRESS"
501
- }
502
-
503
- export interface PermissionGroup {
504
-
505
- permissionGroupId?: string;
506
-
507
- name?: string;
508
-
509
- description?: string;
510
-
511
- applicationPermissions?: (ApplicationPermission | string)[];
512
-
513
- createTime?: number;
514
-
515
- lastModifiedTime?: number;
516
-
517
- membershipStatus?: PermissionGroupMembershipStatus | string;
518
- }
519
- export interface GetPermissionGroupResponse {
520
-
521
- permissionGroup?: PermissionGroup;
522
- }
523
-
524
- export interface GetProgrammaticAccessCredentialsRequest {
525
-
526
- durationInMinutes?: number;
527
-
528
- environmentId: string | undefined;
529
- }
530
-
531
- export interface Credentials {
532
-
533
- accessKeyId?: string;
534
-
535
- secretAccessKey?: string;
536
-
537
- sessionToken?: string;
538
- }
539
-
540
- export interface GetProgrammaticAccessCredentialsResponse {
541
-
542
- credentials?: Credentials;
543
-
544
- durationInMinutes?: number;
545
- }
546
- export interface GetUserRequest {
547
-
548
- userId: string | undefined;
549
- }
550
- export declare enum UserStatus {
551
- CREATING = "CREATING",
552
- DISABLED = "DISABLED",
553
- ENABLED = "ENABLED"
554
- }
555
- export interface GetUserResponse {
556
-
557
- userId?: string;
558
-
559
- status?: UserStatus | string;
560
-
561
- firstName?: string;
562
-
563
- lastName?: string;
564
-
565
- emailAddress?: string;
566
-
567
- type?: UserType | string;
568
-
569
- apiAccess?: ApiAccess | string;
570
-
571
- apiAccessPrincipalArn?: string;
572
-
573
- createTime?: number;
574
-
575
- lastEnabledTime?: number;
576
-
577
- lastDisabledTime?: number;
578
-
579
- lastModifiedTime?: number;
580
-
581
- lastLoginTime?: number;
582
- }
583
- export declare enum LocationType {
584
- INGESTION = "INGESTION",
585
- SAGEMAKER = "SAGEMAKER"
586
- }
587
- export interface GetWorkingLocationRequest {
588
-
589
- locationType?: LocationType | string;
590
- }
591
- export interface GetWorkingLocationResponse {
592
-
593
- s3Uri?: string;
594
-
595
- s3Path?: string;
596
-
597
- s3Bucket?: string;
598
- }
599
-
600
- export interface ListChangesetsRequest {
601
-
602
- datasetId: string | undefined;
603
-
604
- maxResults?: number;
605
-
606
- nextToken?: string;
607
- }
608
-
609
- export interface ChangesetSummary {
610
-
611
- changesetId?: string;
612
-
613
- changesetArn?: string;
614
-
615
- datasetId?: string;
616
-
617
- changeType?: ChangeType | string;
618
-
619
- sourceParams?: Record<string, string>;
620
-
621
- formatParams?: Record<string, string>;
622
-
623
- createTime?: number;
624
-
625
- status?: IngestionStatus | string;
626
-
627
- errorInfo?: ChangesetErrorInfo;
628
-
629
- activeUntilTimestamp?: number;
630
-
631
- activeFromTimestamp?: number;
632
-
633
- updatesChangesetId?: string;
634
-
635
- updatedByChangesetId?: string;
636
- }
637
-
638
- export interface ListChangesetsResponse {
639
-
640
- changesets?: ChangesetSummary[];
641
-
642
- nextToken?: string;
643
- }
644
-
645
- export interface ListDatasetsRequest {
646
-
647
- nextToken?: string;
648
-
649
- maxResults?: number;
650
- }
651
-
652
- export interface Dataset {
653
-
654
- datasetId?: string;
655
-
656
- datasetArn?: string;
657
-
658
- datasetTitle?: string;
659
-
660
- kind?: DatasetKind | string;
661
-
662
- datasetDescription?: string;
663
-
664
- ownerInfo?: DatasetOwnerInfo;
665
-
666
- createTime?: number;
667
-
668
- lastModifiedTime?: number;
669
-
670
- schemaDefinition?: SchemaUnion;
671
-
672
- alias?: string;
673
- }
674
-
675
- export interface ListDatasetsResponse {
676
-
677
- datasets?: Dataset[];
678
-
679
- nextToken?: string;
680
- }
681
-
682
- export interface ListDataViewsRequest {
683
-
684
- datasetId: string | undefined;
685
-
686
- nextToken?: string;
687
-
688
- maxResults?: number;
689
- }
690
-
691
- export interface DataViewSummary {
692
-
693
- dataViewId?: string;
694
-
695
- dataViewArn?: string;
696
-
697
- datasetId?: string;
698
-
699
- asOfTimestamp?: number;
700
-
701
- partitionColumns?: string[];
702
-
703
- sortColumns?: string[];
704
-
705
- status?: DataViewStatus | string;
706
-
707
- errorInfo?: DataViewErrorInfo;
708
-
709
- destinationTypeProperties?: DataViewDestinationTypeParams;
710
-
711
- autoUpdate?: boolean;
712
-
713
- createTime?: number;
714
-
715
- lastModifiedTime?: number;
716
- }
717
- export interface ListDataViewsResponse {
718
-
719
- nextToken?: string;
720
-
721
- dataViews?: DataViewSummary[];
722
- }
723
- export interface ListPermissionGroupsRequest {
724
-
725
- nextToken?: string;
726
-
727
- maxResults: number | undefined;
728
- }
729
- export interface ListPermissionGroupsResponse {
730
-
731
- permissionGroups?: PermissionGroup[];
732
-
733
- nextToken?: string;
734
- }
735
- export interface ListPermissionGroupsByUserRequest {
736
-
737
- userId: string | undefined;
738
-
739
- nextToken?: string;
740
-
741
- maxResults: number | undefined;
742
- }
743
-
744
- export interface PermissionGroupByUser {
745
-
746
- permissionGroupId?: string;
747
-
748
- name?: string;
749
-
750
- membershipStatus?: PermissionGroupMembershipStatus | string;
751
- }
752
- export interface ListPermissionGroupsByUserResponse {
753
-
754
- permissionGroups?: PermissionGroupByUser[];
755
-
756
- nextToken?: string;
757
- }
758
- export interface ListUsersRequest {
759
-
760
- nextToken?: string;
761
-
762
- maxResults: number | undefined;
763
- }
764
-
765
- export interface User {
766
-
767
- userId?: string;
768
-
769
- status?: UserStatus | string;
770
-
771
- firstName?: string;
772
-
773
- lastName?: string;
774
-
775
- emailAddress?: string;
776
-
777
- type?: UserType | string;
778
-
779
- apiAccess?: ApiAccess | string;
780
-
781
- apiAccessPrincipalArn?: string;
782
-
783
- createTime?: number;
784
-
785
- lastEnabledTime?: number;
786
-
787
- lastDisabledTime?: number;
788
-
789
- lastModifiedTime?: number;
790
-
791
- lastLoginTime?: number;
792
- }
793
- export interface ListUsersResponse {
794
-
795
- users?: User[];
796
-
797
- nextToken?: string;
798
- }
799
- export interface ListUsersByPermissionGroupRequest {
800
-
801
- permissionGroupId: string | undefined;
802
-
803
- nextToken?: string;
804
-
805
- maxResults: number | undefined;
806
- }
807
-
808
- export interface UserByPermissionGroup {
809
-
810
- userId?: string;
811
-
812
- status?: UserStatus | string;
813
-
814
- firstName?: string;
815
-
816
- lastName?: string;
817
-
818
- emailAddress?: string;
819
-
820
- type?: UserType | string;
821
-
822
- apiAccess?: ApiAccess | string;
823
-
824
- apiAccessPrincipalArn?: string;
825
-
826
- membershipStatus?: PermissionGroupMembershipStatus | string;
827
- }
828
- export interface ListUsersByPermissionGroupResponse {
829
-
830
- users?: UserByPermissionGroup[];
831
-
832
- nextToken?: string;
833
- }
834
- export interface ResetUserPasswordRequest {
835
-
836
- userId: string | undefined;
837
-
838
- clientToken?: string;
839
- }
840
- export interface ResetUserPasswordResponse {
841
-
842
- userId?: string;
843
-
844
- temporaryPassword?: string;
845
- }
846
-
847
- export interface UpdateChangesetRequest {
848
-
849
- clientToken?: string;
850
-
851
- datasetId: string | undefined;
852
-
853
- changesetId: string | undefined;
854
-
855
- sourceParams: Record<string, string> | undefined;
856
-
857
- formatParams: Record<string, string> | undefined;
858
- }
859
-
860
- export interface UpdateChangesetResponse {
861
-
862
- changesetId?: string;
863
-
864
- datasetId?: string;
865
- }
866
-
867
- export interface UpdateDatasetRequest {
868
-
869
- clientToken?: string;
870
-
871
- datasetId: string | undefined;
872
-
873
- datasetTitle: string | undefined;
874
-
875
- kind: DatasetKind | string | undefined;
876
-
877
- datasetDescription?: string;
878
-
879
- alias?: string;
880
-
881
- schemaDefinition?: SchemaUnion;
882
- }
883
-
884
- export interface UpdateDatasetResponse {
885
-
886
- datasetId?: string;
887
- }
888
- export interface UpdatePermissionGroupRequest {
889
-
890
- permissionGroupId: string | undefined;
891
-
892
- name?: string;
893
-
894
- description?: string;
895
-
896
- applicationPermissions?: (ApplicationPermission | string)[];
897
-
898
- clientToken?: string;
899
- }
900
- export interface UpdatePermissionGroupResponse {
901
-
902
- permissionGroupId?: string;
903
- }
904
- export interface UpdateUserRequest {
905
-
906
- userId: string | undefined;
907
-
908
- type?: UserType | string;
909
-
910
- firstName?: string;
911
-
912
- lastName?: string;
913
-
914
- apiAccess?: ApiAccess | string;
915
-
916
- apiAccessPrincipalArn?: string;
917
-
918
- clientToken?: string;
919
- }
920
- export interface UpdateUserResponse {
921
-
922
- userId?: string;
923
- }
924
-
925
- export declare const AssociateUserToPermissionGroupRequestFilterSensitiveLog: (obj: AssociateUserToPermissionGroupRequest) => any;
926
-
927
- export declare const AssociateUserToPermissionGroupResponseFilterSensitiveLog: (obj: AssociateUserToPermissionGroupResponse) => any;
928
-
929
- export declare const AwsCredentialsFilterSensitiveLog: (obj: AwsCredentials) => any;
930
-
931
- export declare const CreateChangesetRequestFilterSensitiveLog: (obj: CreateChangesetRequest) => any;
932
-
933
- export declare const CreateChangesetResponseFilterSensitiveLog: (obj: CreateChangesetResponse) => any;
934
-
935
- export declare const DatasetOwnerInfoFilterSensitiveLog: (obj: DatasetOwnerInfo) => any;
936
-
937
- export declare const ResourcePermissionFilterSensitiveLog: (obj: ResourcePermission) => any;
938
-
939
- export declare const PermissionGroupParamsFilterSensitiveLog: (obj: PermissionGroupParams) => any;
940
-
941
- export declare const ColumnDefinitionFilterSensitiveLog: (obj: ColumnDefinition) => any;
942
-
943
- export declare const SchemaDefinitionFilterSensitiveLog: (obj: SchemaDefinition) => any;
944
-
945
- export declare const SchemaUnionFilterSensitiveLog: (obj: SchemaUnion) => any;
946
-
947
- export declare const CreateDatasetRequestFilterSensitiveLog: (obj: CreateDatasetRequest) => any;
948
-
949
- export declare const CreateDatasetResponseFilterSensitiveLog: (obj: CreateDatasetResponse) => any;
950
-
951
- export declare const DataViewDestinationTypeParamsFilterSensitiveLog: (obj: DataViewDestinationTypeParams) => any;
952
-
953
- export declare const CreateDataViewRequestFilterSensitiveLog: (obj: CreateDataViewRequest) => any;
954
-
955
- export declare const CreateDataViewResponseFilterSensitiveLog: (obj: CreateDataViewResponse) => any;
956
-
957
- export declare const CreatePermissionGroupRequestFilterSensitiveLog: (obj: CreatePermissionGroupRequest) => any;
958
-
959
- export declare const CreatePermissionGroupResponseFilterSensitiveLog: (obj: CreatePermissionGroupResponse) => any;
960
-
961
- export declare const CreateUserRequestFilterSensitiveLog: (obj: CreateUserRequest) => any;
962
-
963
- export declare const CreateUserResponseFilterSensitiveLog: (obj: CreateUserResponse) => any;
964
-
965
- export declare const DeleteDatasetRequestFilterSensitiveLog: (obj: DeleteDatasetRequest) => any;
966
-
967
- export declare const DeleteDatasetResponseFilterSensitiveLog: (obj: DeleteDatasetResponse) => any;
968
-
969
- export declare const DeletePermissionGroupRequestFilterSensitiveLog: (obj: DeletePermissionGroupRequest) => any;
970
-
971
- export declare const DeletePermissionGroupResponseFilterSensitiveLog: (obj: DeletePermissionGroupResponse) => any;
972
-
973
- export declare const DisableUserRequestFilterSensitiveLog: (obj: DisableUserRequest) => any;
974
-
975
- export declare const DisableUserResponseFilterSensitiveLog: (obj: DisableUserResponse) => any;
976
-
977
- export declare const DisassociateUserFromPermissionGroupRequestFilterSensitiveLog: (obj: DisassociateUserFromPermissionGroupRequest) => any;
978
-
979
- export declare const DisassociateUserFromPermissionGroupResponseFilterSensitiveLog: (obj: DisassociateUserFromPermissionGroupResponse) => any;
980
-
981
- export declare const EnableUserRequestFilterSensitiveLog: (obj: EnableUserRequest) => any;
982
-
983
- export declare const EnableUserResponseFilterSensitiveLog: (obj: EnableUserResponse) => any;
984
-
985
- export declare const GetChangesetRequestFilterSensitiveLog: (obj: GetChangesetRequest) => any;
986
-
987
- export declare const ChangesetErrorInfoFilterSensitiveLog: (obj: ChangesetErrorInfo) => any;
988
-
989
- export declare const GetChangesetResponseFilterSensitiveLog: (obj: GetChangesetResponse) => any;
990
-
991
- export declare const GetDatasetRequestFilterSensitiveLog: (obj: GetDatasetRequest) => any;
992
-
993
- export declare const GetDatasetResponseFilterSensitiveLog: (obj: GetDatasetResponse) => any;
994
-
995
- export declare const GetDataViewRequestFilterSensitiveLog: (obj: GetDataViewRequest) => any;
996
-
997
- export declare const DataViewErrorInfoFilterSensitiveLog: (obj: DataViewErrorInfo) => any;
998
-
999
- export declare const GetDataViewResponseFilterSensitiveLog: (obj: GetDataViewResponse) => any;
1000
-
1001
- export declare const GetExternalDataViewAccessDetailsRequestFilterSensitiveLog: (obj: GetExternalDataViewAccessDetailsRequest) => any;
1002
-
1003
- export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
1004
-
1005
- export declare const GetExternalDataViewAccessDetailsResponseFilterSensitiveLog: (obj: GetExternalDataViewAccessDetailsResponse) => any;
1006
-
1007
- export declare const GetPermissionGroupRequestFilterSensitiveLog: (obj: GetPermissionGroupRequest) => any;
1008
-
1009
- export declare const PermissionGroupFilterSensitiveLog: (obj: PermissionGroup) => any;
1010
-
1011
- export declare const GetPermissionGroupResponseFilterSensitiveLog: (obj: GetPermissionGroupResponse) => any;
1012
-
1013
- export declare const GetProgrammaticAccessCredentialsRequestFilterSensitiveLog: (obj: GetProgrammaticAccessCredentialsRequest) => any;
1014
-
1015
- export declare const CredentialsFilterSensitiveLog: (obj: Credentials) => any;
1016
-
1017
- export declare const GetProgrammaticAccessCredentialsResponseFilterSensitiveLog: (obj: GetProgrammaticAccessCredentialsResponse) => any;
1018
-
1019
- export declare const GetUserRequestFilterSensitiveLog: (obj: GetUserRequest) => any;
1020
-
1021
- export declare const GetUserResponseFilterSensitiveLog: (obj: GetUserResponse) => any;
1022
-
1023
- export declare const GetWorkingLocationRequestFilterSensitiveLog: (obj: GetWorkingLocationRequest) => any;
1024
-
1025
- export declare const GetWorkingLocationResponseFilterSensitiveLog: (obj: GetWorkingLocationResponse) => any;
1026
-
1027
- export declare const ListChangesetsRequestFilterSensitiveLog: (obj: ListChangesetsRequest) => any;
1028
-
1029
- export declare const ChangesetSummaryFilterSensitiveLog: (obj: ChangesetSummary) => any;
1030
-
1031
- export declare const ListChangesetsResponseFilterSensitiveLog: (obj: ListChangesetsResponse) => any;
1032
-
1033
- export declare const ListDatasetsRequestFilterSensitiveLog: (obj: ListDatasetsRequest) => any;
1034
-
1035
- export declare const DatasetFilterSensitiveLog: (obj: Dataset) => any;
1036
-
1037
- export declare const ListDatasetsResponseFilterSensitiveLog: (obj: ListDatasetsResponse) => any;
1038
-
1039
- export declare const ListDataViewsRequestFilterSensitiveLog: (obj: ListDataViewsRequest) => any;
1040
-
1041
- export declare const DataViewSummaryFilterSensitiveLog: (obj: DataViewSummary) => any;
1042
-
1043
- export declare const ListDataViewsResponseFilterSensitiveLog: (obj: ListDataViewsResponse) => any;
1044
-
1045
- export declare const ListPermissionGroupsRequestFilterSensitiveLog: (obj: ListPermissionGroupsRequest) => any;
1046
-
1047
- export declare const ListPermissionGroupsResponseFilterSensitiveLog: (obj: ListPermissionGroupsResponse) => any;
1048
-
1049
- export declare const ListPermissionGroupsByUserRequestFilterSensitiveLog: (obj: ListPermissionGroupsByUserRequest) => any;
1050
-
1051
- export declare const PermissionGroupByUserFilterSensitiveLog: (obj: PermissionGroupByUser) => any;
1052
-
1053
- export declare const ListPermissionGroupsByUserResponseFilterSensitiveLog: (obj: ListPermissionGroupsByUserResponse) => any;
1054
-
1055
- export declare const ListUsersRequestFilterSensitiveLog: (obj: ListUsersRequest) => any;
1056
-
1057
- export declare const UserFilterSensitiveLog: (obj: User) => any;
1058
-
1059
- export declare const ListUsersResponseFilterSensitiveLog: (obj: ListUsersResponse) => any;
1060
-
1061
- export declare const ListUsersByPermissionGroupRequestFilterSensitiveLog: (obj: ListUsersByPermissionGroupRequest) => any;
1062
-
1063
- export declare const UserByPermissionGroupFilterSensitiveLog: (obj: UserByPermissionGroup) => any;
1064
-
1065
- export declare const ListUsersByPermissionGroupResponseFilterSensitiveLog: (obj: ListUsersByPermissionGroupResponse) => any;
1066
-
1067
- export declare const ResetUserPasswordRequestFilterSensitiveLog: (obj: ResetUserPasswordRequest) => any;
1068
-
1069
- export declare const ResetUserPasswordResponseFilterSensitiveLog: (obj: ResetUserPasswordResponse) => any;
1070
-
1071
- export declare const UpdateChangesetRequestFilterSensitiveLog: (obj: UpdateChangesetRequest) => any;
1072
-
1073
- export declare const UpdateChangesetResponseFilterSensitiveLog: (obj: UpdateChangesetResponse) => any;
1074
-
1075
- export declare const UpdateDatasetRequestFilterSensitiveLog: (obj: UpdateDatasetRequest) => any;
1076
-
1077
- export declare const UpdateDatasetResponseFilterSensitiveLog: (obj: UpdateDatasetResponse) => any;
1078
-
1079
- export declare const UpdatePermissionGroupRequestFilterSensitiveLog: (obj: UpdatePermissionGroupRequest) => any;
1080
-
1081
- export declare const UpdatePermissionGroupResponseFilterSensitiveLog: (obj: UpdatePermissionGroupResponse) => any;
1082
-
1083
- export declare const UpdateUserRequestFilterSensitiveLog: (obj: UpdateUserRequest) => any;
1084
-
1085
- export declare const UpdateUserResponseFilterSensitiveLog: (obj: UpdateUserResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { FinspaceDataServiceException as __BaseException } from "./FinspaceDataServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare enum ApiAccess {
11
+ DISABLED = "DISABLED",
12
+ ENABLED = "ENABLED",
13
+ }
14
+ export declare enum ApplicationPermission {
15
+ AccessNotebooks = "AccessNotebooks",
16
+ CreateDataset = "CreateDataset",
17
+ GetTemporaryCredentials = "GetTemporaryCredentials",
18
+ ManageAttributeSets = "ManageAttributeSets",
19
+ ManageClusters = "ManageClusters",
20
+ ManageUsersAndGroups = "ManageUsersAndGroups",
21
+ ViewAuditData = "ViewAuditData",
22
+ }
23
+ export interface AssociateUserToPermissionGroupRequest {
24
+ permissionGroupId: string | undefined;
25
+ userId: string | undefined;
26
+ clientToken?: string;
27
+ }
28
+ export interface AssociateUserToPermissionGroupResponse {
29
+ statusCode?: number;
30
+ }
31
+ export declare class ConflictException extends __BaseException {
32
+ readonly name: "ConflictException";
33
+ readonly $fault: "client";
34
+ reason?: string;
35
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
36
+ }
37
+ export declare class InternalServerException extends __BaseException {
38
+ readonly name: "InternalServerException";
39
+ readonly $fault: "server";
40
+ constructor(
41
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
42
+ );
43
+ }
44
+ export declare class ResourceNotFoundException extends __BaseException {
45
+ readonly name: "ResourceNotFoundException";
46
+ readonly $fault: "client";
47
+ reason?: string;
48
+ constructor(
49
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
50
+ );
51
+ }
52
+ export declare class ThrottlingException extends __BaseException {
53
+ readonly name: "ThrottlingException";
54
+ readonly $fault: "client";
55
+ constructor(
56
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
57
+ );
58
+ }
59
+ export declare class ValidationException extends __BaseException {
60
+ readonly name: "ValidationException";
61
+ readonly $fault: "client";
62
+ reason?: string;
63
+ constructor(
64
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
65
+ );
66
+ }
67
+ export interface AwsCredentials {
68
+ accessKeyId?: string;
69
+ secretAccessKey?: string;
70
+ sessionToken?: string;
71
+ expiration?: number;
72
+ }
73
+ export declare enum ChangeType {
74
+ APPEND = "APPEND",
75
+ MODIFY = "MODIFY",
76
+ REPLACE = "REPLACE",
77
+ }
78
+ export interface CreateChangesetRequest {
79
+ clientToken?: string;
80
+ datasetId: string | undefined;
81
+ changeType: ChangeType | string | undefined;
82
+ sourceParams: Record<string, string> | undefined;
83
+ formatParams: Record<string, string> | undefined;
84
+ }
85
+ export interface CreateChangesetResponse {
86
+ datasetId?: string;
87
+ changesetId?: string;
88
+ }
89
+ export declare class LimitExceededException extends __BaseException {
90
+ readonly name: "LimitExceededException";
91
+ readonly $fault: "client";
92
+ constructor(
93
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
94
+ );
95
+ }
96
+ export declare enum DatasetKind {
97
+ NON_TABULAR = "NON_TABULAR",
98
+ TABULAR = "TABULAR",
99
+ }
100
+ export interface DatasetOwnerInfo {
101
+ name?: string;
102
+ phoneNumber?: string;
103
+ email?: string;
104
+ }
105
+ export interface ResourcePermission {
106
+ permission?: string;
107
+ }
108
+ export interface PermissionGroupParams {
109
+ permissionGroupId?: string;
110
+ datasetPermissions?: ResourcePermission[];
111
+ }
112
+ export declare enum ColumnDataType {
113
+ BIGINT = "BIGINT",
114
+ BINARY = "BINARY",
115
+ BOOLEAN = "BOOLEAN",
116
+ CHAR = "CHAR",
117
+ DATE = "DATE",
118
+ DATETIME = "DATETIME",
119
+ DOUBLE = "DOUBLE",
120
+ FLOAT = "FLOAT",
121
+ INTEGER = "INTEGER",
122
+ SMALLINT = "SMALLINT",
123
+ STRING = "STRING",
124
+ TINYINT = "TINYINT",
125
+ }
126
+ export interface ColumnDefinition {
127
+ dataType?: ColumnDataType | string;
128
+ columnName?: string;
129
+ columnDescription?: string;
130
+ }
131
+ export interface SchemaDefinition {
132
+ columns?: ColumnDefinition[];
133
+ primaryKeyColumns?: string[];
134
+ }
135
+ export interface SchemaUnion {
136
+ tabularSchemaConfig?: SchemaDefinition;
137
+ }
138
+ export interface CreateDatasetRequest {
139
+ clientToken?: string;
140
+ datasetTitle: string | undefined;
141
+ kind: DatasetKind | string | undefined;
142
+ datasetDescription?: string;
143
+ ownerInfo?: DatasetOwnerInfo;
144
+ permissionGroupParams: PermissionGroupParams | undefined;
145
+ alias?: string;
146
+ schemaDefinition?: SchemaUnion;
147
+ }
148
+ export interface CreateDatasetResponse {
149
+ datasetId?: string;
150
+ }
151
+ export declare enum ExportFileFormat {
152
+ DELIMITED_TEXT = "DELIMITED_TEXT",
153
+ PARQUET = "PARQUET",
154
+ }
155
+ export interface DataViewDestinationTypeParams {
156
+ destinationType: string | undefined;
157
+ s3DestinationExportFileFormat?: ExportFileFormat | string;
158
+ s3DestinationExportFileFormatOptions?: Record<string, string>;
159
+ }
160
+ export interface CreateDataViewRequest {
161
+ clientToken?: string;
162
+ datasetId: string | undefined;
163
+ autoUpdate?: boolean;
164
+ sortColumns?: string[];
165
+ partitionColumns?: string[];
166
+ asOfTimestamp?: number;
167
+ destinationTypeParams: DataViewDestinationTypeParams | undefined;
168
+ }
169
+ export interface CreateDataViewResponse {
170
+ datasetId?: string;
171
+ dataViewId?: string;
172
+ }
173
+ export interface CreatePermissionGroupRequest {
174
+ name: string | undefined;
175
+ description?: string;
176
+ applicationPermissions: (ApplicationPermission | string)[] | undefined;
177
+ clientToken?: string;
178
+ }
179
+ export interface CreatePermissionGroupResponse {
180
+ permissionGroupId?: string;
181
+ }
182
+ export declare enum UserType {
183
+ APP_USER = "APP_USER",
184
+ SUPER_USER = "SUPER_USER",
185
+ }
186
+ export interface CreateUserRequest {
187
+ emailAddress: string | undefined;
188
+ type: UserType | string | undefined;
189
+ firstName?: string;
190
+ lastName?: string;
191
+ ApiAccess?: ApiAccess | string;
192
+ apiAccessPrincipalArn?: string;
193
+ clientToken?: string;
194
+ }
195
+ export interface CreateUserResponse {
196
+ userId?: string;
197
+ }
198
+ export interface DeleteDatasetRequest {
199
+ clientToken?: string;
200
+ datasetId: string | undefined;
201
+ }
202
+ export interface DeleteDatasetResponse {
203
+ datasetId?: string;
204
+ }
205
+ export interface DeletePermissionGroupRequest {
206
+ permissionGroupId: string | undefined;
207
+ clientToken?: string;
208
+ }
209
+ export interface DeletePermissionGroupResponse {
210
+ permissionGroupId?: string;
211
+ }
212
+ export interface DisableUserRequest {
213
+ userId: string | undefined;
214
+ clientToken?: string;
215
+ }
216
+ export interface DisableUserResponse {
217
+ userId?: string;
218
+ }
219
+ export interface DisassociateUserFromPermissionGroupRequest {
220
+ permissionGroupId: string | undefined;
221
+ userId: string | undefined;
222
+ clientToken?: string;
223
+ }
224
+ export interface DisassociateUserFromPermissionGroupResponse {
225
+ statusCode?: number;
226
+ }
227
+ export interface EnableUserRequest {
228
+ userId: string | undefined;
229
+ clientToken?: string;
230
+ }
231
+ export interface EnableUserResponse {
232
+ userId?: string;
233
+ }
234
+ export interface GetChangesetRequest {
235
+ datasetId: string | undefined;
236
+ changesetId: string | undefined;
237
+ }
238
+ export declare enum ErrorCategory {
239
+ ACCESS_DENIED = "ACCESS_DENIED",
240
+ CANCELLED = "CANCELLED",
241
+ INTERNAL_SERVICE_EXCEPTION = "INTERNAL_SERVICE_EXCEPTION",
242
+ RESOURCE_NOT_FOUND = "RESOURCE_NOT_FOUND",
243
+ SERVICE_QUOTA_EXCEEDED = "SERVICE_QUOTA_EXCEEDED",
244
+ THROTTLING = "THROTTLING",
245
+ USER_RECOVERABLE = "USER_RECOVERABLE",
246
+ VALIDATION = "VALIDATION",
247
+ }
248
+ export interface ChangesetErrorInfo {
249
+ errorMessage?: string;
250
+ errorCategory?: ErrorCategory | string;
251
+ }
252
+ export declare enum IngestionStatus {
253
+ FAILED = "FAILED",
254
+ PENDING = "PENDING",
255
+ RUNNING = "RUNNING",
256
+ STOP_REQUESTED = "STOP_REQUESTED",
257
+ SUCCESS = "SUCCESS",
258
+ }
259
+ export interface GetChangesetResponse {
260
+ changesetId?: string;
261
+ changesetArn?: string;
262
+ datasetId?: string;
263
+ changeType?: ChangeType | string;
264
+ sourceParams?: Record<string, string>;
265
+ formatParams?: Record<string, string>;
266
+ createTime?: number;
267
+ status?: IngestionStatus | string;
268
+ errorInfo?: ChangesetErrorInfo;
269
+ activeUntilTimestamp?: number;
270
+ activeFromTimestamp?: number;
271
+ updatesChangesetId?: string;
272
+ updatedByChangesetId?: string;
273
+ }
274
+ export interface GetDatasetRequest {
275
+ datasetId: string | undefined;
276
+ }
277
+ export declare enum DatasetStatus {
278
+ FAILED = "FAILED",
279
+ PENDING = "PENDING",
280
+ RUNNING = "RUNNING",
281
+ SUCCESS = "SUCCESS",
282
+ }
283
+ export interface GetDatasetResponse {
284
+ datasetId?: string;
285
+ datasetArn?: string;
286
+ datasetTitle?: string;
287
+ kind?: DatasetKind | string;
288
+ datasetDescription?: string;
289
+ createTime?: number;
290
+ lastModifiedTime?: number;
291
+ schemaDefinition?: SchemaUnion;
292
+ alias?: string;
293
+ status?: DatasetStatus | string;
294
+ }
295
+ export interface GetDataViewRequest {
296
+ dataViewId: string | undefined;
297
+ datasetId: string | undefined;
298
+ }
299
+ export interface DataViewErrorInfo {
300
+ errorMessage?: string;
301
+ errorCategory?: ErrorCategory | string;
302
+ }
303
+ export declare enum DataViewStatus {
304
+ CANCELLED = "CANCELLED",
305
+ FAILED = "FAILED",
306
+ FAILED_CLEANUP_FAILED = "FAILED_CLEANUP_FAILED",
307
+ PENDING = "PENDING",
308
+ RUNNING = "RUNNING",
309
+ STARTING = "STARTING",
310
+ SUCCESS = "SUCCESS",
311
+ TIMEOUT = "TIMEOUT",
312
+ }
313
+ export interface GetDataViewResponse {
314
+ autoUpdate?: boolean;
315
+ partitionColumns?: string[];
316
+ datasetId?: string;
317
+ asOfTimestamp?: number;
318
+ errorInfo?: DataViewErrorInfo;
319
+ lastModifiedTime?: number;
320
+ createTime?: number;
321
+ sortColumns?: string[];
322
+ dataViewId?: string;
323
+ dataViewArn?: string;
324
+ destinationTypeParams?: DataViewDestinationTypeParams;
325
+ status?: DataViewStatus | string;
326
+ }
327
+ export interface GetExternalDataViewAccessDetailsRequest {
328
+ dataViewId: string | undefined;
329
+ datasetId: string | undefined;
330
+ }
331
+ export interface S3Location {
332
+ bucket: string | undefined;
333
+ key: string | undefined;
334
+ }
335
+ export interface GetExternalDataViewAccessDetailsResponse {
336
+ credentials?: AwsCredentials;
337
+ s3Location?: S3Location;
338
+ }
339
+ export interface GetPermissionGroupRequest {
340
+ permissionGroupId: string | undefined;
341
+ }
342
+ export declare enum PermissionGroupMembershipStatus {
343
+ ADDITION_IN_PROGRESS = "ADDITION_IN_PROGRESS",
344
+ ADDITION_SUCCESS = "ADDITION_SUCCESS",
345
+ REMOVAL_IN_PROGRESS = "REMOVAL_IN_PROGRESS",
346
+ }
347
+ export interface PermissionGroup {
348
+ permissionGroupId?: string;
349
+ name?: string;
350
+ description?: string;
351
+ applicationPermissions?: (ApplicationPermission | string)[];
352
+ createTime?: number;
353
+ lastModifiedTime?: number;
354
+ membershipStatus?: PermissionGroupMembershipStatus | string;
355
+ }
356
+ export interface GetPermissionGroupResponse {
357
+ permissionGroup?: PermissionGroup;
358
+ }
359
+ export interface GetProgrammaticAccessCredentialsRequest {
360
+ durationInMinutes?: number;
361
+ environmentId: string | undefined;
362
+ }
363
+ export interface Credentials {
364
+ accessKeyId?: string;
365
+ secretAccessKey?: string;
366
+ sessionToken?: string;
367
+ }
368
+ export interface GetProgrammaticAccessCredentialsResponse {
369
+ credentials?: Credentials;
370
+ durationInMinutes?: number;
371
+ }
372
+ export interface GetUserRequest {
373
+ userId: string | undefined;
374
+ }
375
+ export declare enum UserStatus {
376
+ CREATING = "CREATING",
377
+ DISABLED = "DISABLED",
378
+ ENABLED = "ENABLED",
379
+ }
380
+ export interface GetUserResponse {
381
+ userId?: string;
382
+ status?: UserStatus | string;
383
+ firstName?: string;
384
+ lastName?: string;
385
+ emailAddress?: string;
386
+ type?: UserType | string;
387
+ apiAccess?: ApiAccess | string;
388
+ apiAccessPrincipalArn?: string;
389
+ createTime?: number;
390
+ lastEnabledTime?: number;
391
+ lastDisabledTime?: number;
392
+ lastModifiedTime?: number;
393
+ lastLoginTime?: number;
394
+ }
395
+ export declare enum LocationType {
396
+ INGESTION = "INGESTION",
397
+ SAGEMAKER = "SAGEMAKER",
398
+ }
399
+ export interface GetWorkingLocationRequest {
400
+ locationType?: LocationType | string;
401
+ }
402
+ export interface GetWorkingLocationResponse {
403
+ s3Uri?: string;
404
+ s3Path?: string;
405
+ s3Bucket?: string;
406
+ }
407
+ export interface ListChangesetsRequest {
408
+ datasetId: string | undefined;
409
+ maxResults?: number;
410
+ nextToken?: string;
411
+ }
412
+ export interface ChangesetSummary {
413
+ changesetId?: string;
414
+ changesetArn?: string;
415
+ datasetId?: string;
416
+ changeType?: ChangeType | string;
417
+ sourceParams?: Record<string, string>;
418
+ formatParams?: Record<string, string>;
419
+ createTime?: number;
420
+ status?: IngestionStatus | string;
421
+ errorInfo?: ChangesetErrorInfo;
422
+ activeUntilTimestamp?: number;
423
+ activeFromTimestamp?: number;
424
+ updatesChangesetId?: string;
425
+ updatedByChangesetId?: string;
426
+ }
427
+ export interface ListChangesetsResponse {
428
+ changesets?: ChangesetSummary[];
429
+ nextToken?: string;
430
+ }
431
+ export interface ListDatasetsRequest {
432
+ nextToken?: string;
433
+ maxResults?: number;
434
+ }
435
+ export interface Dataset {
436
+ datasetId?: string;
437
+ datasetArn?: string;
438
+ datasetTitle?: string;
439
+ kind?: DatasetKind | string;
440
+ datasetDescription?: string;
441
+ ownerInfo?: DatasetOwnerInfo;
442
+ createTime?: number;
443
+ lastModifiedTime?: number;
444
+ schemaDefinition?: SchemaUnion;
445
+ alias?: string;
446
+ }
447
+ export interface ListDatasetsResponse {
448
+ datasets?: Dataset[];
449
+ nextToken?: string;
450
+ }
451
+ export interface ListDataViewsRequest {
452
+ datasetId: string | undefined;
453
+ nextToken?: string;
454
+ maxResults?: number;
455
+ }
456
+ export interface DataViewSummary {
457
+ dataViewId?: string;
458
+ dataViewArn?: string;
459
+ datasetId?: string;
460
+ asOfTimestamp?: number;
461
+ partitionColumns?: string[];
462
+ sortColumns?: string[];
463
+ status?: DataViewStatus | string;
464
+ errorInfo?: DataViewErrorInfo;
465
+ destinationTypeProperties?: DataViewDestinationTypeParams;
466
+ autoUpdate?: boolean;
467
+ createTime?: number;
468
+ lastModifiedTime?: number;
469
+ }
470
+ export interface ListDataViewsResponse {
471
+ nextToken?: string;
472
+ dataViews?: DataViewSummary[];
473
+ }
474
+ export interface ListPermissionGroupsRequest {
475
+ nextToken?: string;
476
+ maxResults: number | undefined;
477
+ }
478
+ export interface ListPermissionGroupsResponse {
479
+ permissionGroups?: PermissionGroup[];
480
+ nextToken?: string;
481
+ }
482
+ export interface ListPermissionGroupsByUserRequest {
483
+ userId: string | undefined;
484
+ nextToken?: string;
485
+ maxResults: number | undefined;
486
+ }
487
+ export interface PermissionGroupByUser {
488
+ permissionGroupId?: string;
489
+ name?: string;
490
+ membershipStatus?: PermissionGroupMembershipStatus | string;
491
+ }
492
+ export interface ListPermissionGroupsByUserResponse {
493
+ permissionGroups?: PermissionGroupByUser[];
494
+ nextToken?: string;
495
+ }
496
+ export interface ListUsersRequest {
497
+ nextToken?: string;
498
+ maxResults: number | undefined;
499
+ }
500
+ export interface User {
501
+ userId?: string;
502
+ status?: UserStatus | string;
503
+ firstName?: string;
504
+ lastName?: string;
505
+ emailAddress?: string;
506
+ type?: UserType | string;
507
+ apiAccess?: ApiAccess | string;
508
+ apiAccessPrincipalArn?: string;
509
+ createTime?: number;
510
+ lastEnabledTime?: number;
511
+ lastDisabledTime?: number;
512
+ lastModifiedTime?: number;
513
+ lastLoginTime?: number;
514
+ }
515
+ export interface ListUsersResponse {
516
+ users?: User[];
517
+ nextToken?: string;
518
+ }
519
+ export interface ListUsersByPermissionGroupRequest {
520
+ permissionGroupId: string | undefined;
521
+ nextToken?: string;
522
+ maxResults: number | undefined;
523
+ }
524
+ export interface UserByPermissionGroup {
525
+ userId?: string;
526
+ status?: UserStatus | string;
527
+ firstName?: string;
528
+ lastName?: string;
529
+ emailAddress?: string;
530
+ type?: UserType | string;
531
+ apiAccess?: ApiAccess | string;
532
+ apiAccessPrincipalArn?: string;
533
+ membershipStatus?: PermissionGroupMembershipStatus | string;
534
+ }
535
+ export interface ListUsersByPermissionGroupResponse {
536
+ users?: UserByPermissionGroup[];
537
+ nextToken?: string;
538
+ }
539
+ export interface ResetUserPasswordRequest {
540
+ userId: string | undefined;
541
+ clientToken?: string;
542
+ }
543
+ export interface ResetUserPasswordResponse {
544
+ userId?: string;
545
+ temporaryPassword?: string;
546
+ }
547
+ export interface UpdateChangesetRequest {
548
+ clientToken?: string;
549
+ datasetId: string | undefined;
550
+ changesetId: string | undefined;
551
+ sourceParams: Record<string, string> | undefined;
552
+ formatParams: Record<string, string> | undefined;
553
+ }
554
+ export interface UpdateChangesetResponse {
555
+ changesetId?: string;
556
+ datasetId?: string;
557
+ }
558
+ export interface UpdateDatasetRequest {
559
+ clientToken?: string;
560
+ datasetId: string | undefined;
561
+ datasetTitle: string | undefined;
562
+ kind: DatasetKind | string | undefined;
563
+ datasetDescription?: string;
564
+ alias?: string;
565
+ schemaDefinition?: SchemaUnion;
566
+ }
567
+ export interface UpdateDatasetResponse {
568
+ datasetId?: string;
569
+ }
570
+ export interface UpdatePermissionGroupRequest {
571
+ permissionGroupId: string | undefined;
572
+ name?: string;
573
+ description?: string;
574
+ applicationPermissions?: (ApplicationPermission | string)[];
575
+ clientToken?: string;
576
+ }
577
+ export interface UpdatePermissionGroupResponse {
578
+ permissionGroupId?: string;
579
+ }
580
+ export interface UpdateUserRequest {
581
+ userId: string | undefined;
582
+ type?: UserType | string;
583
+ firstName?: string;
584
+ lastName?: string;
585
+ apiAccess?: ApiAccess | string;
586
+ apiAccessPrincipalArn?: string;
587
+ clientToken?: string;
588
+ }
589
+ export interface UpdateUserResponse {
590
+ userId?: string;
591
+ }
592
+ export declare const AssociateUserToPermissionGroupRequestFilterSensitiveLog: (
593
+ obj: AssociateUserToPermissionGroupRequest
594
+ ) => any;
595
+ export declare const AssociateUserToPermissionGroupResponseFilterSensitiveLog: (
596
+ obj: AssociateUserToPermissionGroupResponse
597
+ ) => any;
598
+ export declare const AwsCredentialsFilterSensitiveLog: (
599
+ obj: AwsCredentials
600
+ ) => any;
601
+ export declare const CreateChangesetRequestFilterSensitiveLog: (
602
+ obj: CreateChangesetRequest
603
+ ) => any;
604
+ export declare const CreateChangesetResponseFilterSensitiveLog: (
605
+ obj: CreateChangesetResponse
606
+ ) => any;
607
+ export declare const DatasetOwnerInfoFilterSensitiveLog: (
608
+ obj: DatasetOwnerInfo
609
+ ) => any;
610
+ export declare const ResourcePermissionFilterSensitiveLog: (
611
+ obj: ResourcePermission
612
+ ) => any;
613
+ export declare const PermissionGroupParamsFilterSensitiveLog: (
614
+ obj: PermissionGroupParams
615
+ ) => any;
616
+ export declare const ColumnDefinitionFilterSensitiveLog: (
617
+ obj: ColumnDefinition
618
+ ) => any;
619
+ export declare const SchemaDefinitionFilterSensitiveLog: (
620
+ obj: SchemaDefinition
621
+ ) => any;
622
+ export declare const SchemaUnionFilterSensitiveLog: (obj: SchemaUnion) => any;
623
+ export declare const CreateDatasetRequestFilterSensitiveLog: (
624
+ obj: CreateDatasetRequest
625
+ ) => any;
626
+ export declare const CreateDatasetResponseFilterSensitiveLog: (
627
+ obj: CreateDatasetResponse
628
+ ) => any;
629
+ export declare const DataViewDestinationTypeParamsFilterSensitiveLog: (
630
+ obj: DataViewDestinationTypeParams
631
+ ) => any;
632
+ export declare const CreateDataViewRequestFilterSensitiveLog: (
633
+ obj: CreateDataViewRequest
634
+ ) => any;
635
+ export declare const CreateDataViewResponseFilterSensitiveLog: (
636
+ obj: CreateDataViewResponse
637
+ ) => any;
638
+ export declare const CreatePermissionGroupRequestFilterSensitiveLog: (
639
+ obj: CreatePermissionGroupRequest
640
+ ) => any;
641
+ export declare const CreatePermissionGroupResponseFilterSensitiveLog: (
642
+ obj: CreatePermissionGroupResponse
643
+ ) => any;
644
+ export declare const CreateUserRequestFilterSensitiveLog: (
645
+ obj: CreateUserRequest
646
+ ) => any;
647
+ export declare const CreateUserResponseFilterSensitiveLog: (
648
+ obj: CreateUserResponse
649
+ ) => any;
650
+ export declare const DeleteDatasetRequestFilterSensitiveLog: (
651
+ obj: DeleteDatasetRequest
652
+ ) => any;
653
+ export declare const DeleteDatasetResponseFilterSensitiveLog: (
654
+ obj: DeleteDatasetResponse
655
+ ) => any;
656
+ export declare const DeletePermissionGroupRequestFilterSensitiveLog: (
657
+ obj: DeletePermissionGroupRequest
658
+ ) => any;
659
+ export declare const DeletePermissionGroupResponseFilterSensitiveLog: (
660
+ obj: DeletePermissionGroupResponse
661
+ ) => any;
662
+ export declare const DisableUserRequestFilterSensitiveLog: (
663
+ obj: DisableUserRequest
664
+ ) => any;
665
+ export declare const DisableUserResponseFilterSensitiveLog: (
666
+ obj: DisableUserResponse
667
+ ) => any;
668
+ export declare const DisassociateUserFromPermissionGroupRequestFilterSensitiveLog: (
669
+ obj: DisassociateUserFromPermissionGroupRequest
670
+ ) => any;
671
+ export declare const DisassociateUserFromPermissionGroupResponseFilterSensitiveLog: (
672
+ obj: DisassociateUserFromPermissionGroupResponse
673
+ ) => any;
674
+ export declare const EnableUserRequestFilterSensitiveLog: (
675
+ obj: EnableUserRequest
676
+ ) => any;
677
+ export declare const EnableUserResponseFilterSensitiveLog: (
678
+ obj: EnableUserResponse
679
+ ) => any;
680
+ export declare const GetChangesetRequestFilterSensitiveLog: (
681
+ obj: GetChangesetRequest
682
+ ) => any;
683
+ export declare const ChangesetErrorInfoFilterSensitiveLog: (
684
+ obj: ChangesetErrorInfo
685
+ ) => any;
686
+ export declare const GetChangesetResponseFilterSensitiveLog: (
687
+ obj: GetChangesetResponse
688
+ ) => any;
689
+ export declare const GetDatasetRequestFilterSensitiveLog: (
690
+ obj: GetDatasetRequest
691
+ ) => any;
692
+ export declare const GetDatasetResponseFilterSensitiveLog: (
693
+ obj: GetDatasetResponse
694
+ ) => any;
695
+ export declare const GetDataViewRequestFilterSensitiveLog: (
696
+ obj: GetDataViewRequest
697
+ ) => any;
698
+ export declare const DataViewErrorInfoFilterSensitiveLog: (
699
+ obj: DataViewErrorInfo
700
+ ) => any;
701
+ export declare const GetDataViewResponseFilterSensitiveLog: (
702
+ obj: GetDataViewResponse
703
+ ) => any;
704
+ export declare const GetExternalDataViewAccessDetailsRequestFilterSensitiveLog: (
705
+ obj: GetExternalDataViewAccessDetailsRequest
706
+ ) => any;
707
+ export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
708
+ export declare const GetExternalDataViewAccessDetailsResponseFilterSensitiveLog: (
709
+ obj: GetExternalDataViewAccessDetailsResponse
710
+ ) => any;
711
+ export declare const GetPermissionGroupRequestFilterSensitiveLog: (
712
+ obj: GetPermissionGroupRequest
713
+ ) => any;
714
+ export declare const PermissionGroupFilterSensitiveLog: (
715
+ obj: PermissionGroup
716
+ ) => any;
717
+ export declare const GetPermissionGroupResponseFilterSensitiveLog: (
718
+ obj: GetPermissionGroupResponse
719
+ ) => any;
720
+ export declare const GetProgrammaticAccessCredentialsRequestFilterSensitiveLog: (
721
+ obj: GetProgrammaticAccessCredentialsRequest
722
+ ) => any;
723
+ export declare const CredentialsFilterSensitiveLog: (obj: Credentials) => any;
724
+ export declare const GetProgrammaticAccessCredentialsResponseFilterSensitiveLog: (
725
+ obj: GetProgrammaticAccessCredentialsResponse
726
+ ) => any;
727
+ export declare const GetUserRequestFilterSensitiveLog: (
728
+ obj: GetUserRequest
729
+ ) => any;
730
+ export declare const GetUserResponseFilterSensitiveLog: (
731
+ obj: GetUserResponse
732
+ ) => any;
733
+ export declare const GetWorkingLocationRequestFilterSensitiveLog: (
734
+ obj: GetWorkingLocationRequest
735
+ ) => any;
736
+ export declare const GetWorkingLocationResponseFilterSensitiveLog: (
737
+ obj: GetWorkingLocationResponse
738
+ ) => any;
739
+ export declare const ListChangesetsRequestFilterSensitiveLog: (
740
+ obj: ListChangesetsRequest
741
+ ) => any;
742
+ export declare const ChangesetSummaryFilterSensitiveLog: (
743
+ obj: ChangesetSummary
744
+ ) => any;
745
+ export declare const ListChangesetsResponseFilterSensitiveLog: (
746
+ obj: ListChangesetsResponse
747
+ ) => any;
748
+ export declare const ListDatasetsRequestFilterSensitiveLog: (
749
+ obj: ListDatasetsRequest
750
+ ) => any;
751
+ export declare const DatasetFilterSensitiveLog: (obj: Dataset) => any;
752
+ export declare const ListDatasetsResponseFilterSensitiveLog: (
753
+ obj: ListDatasetsResponse
754
+ ) => any;
755
+ export declare const ListDataViewsRequestFilterSensitiveLog: (
756
+ obj: ListDataViewsRequest
757
+ ) => any;
758
+ export declare const DataViewSummaryFilterSensitiveLog: (
759
+ obj: DataViewSummary
760
+ ) => any;
761
+ export declare const ListDataViewsResponseFilterSensitiveLog: (
762
+ obj: ListDataViewsResponse
763
+ ) => any;
764
+ export declare const ListPermissionGroupsRequestFilterSensitiveLog: (
765
+ obj: ListPermissionGroupsRequest
766
+ ) => any;
767
+ export declare const ListPermissionGroupsResponseFilterSensitiveLog: (
768
+ obj: ListPermissionGroupsResponse
769
+ ) => any;
770
+ export declare const ListPermissionGroupsByUserRequestFilterSensitiveLog: (
771
+ obj: ListPermissionGroupsByUserRequest
772
+ ) => any;
773
+ export declare const PermissionGroupByUserFilterSensitiveLog: (
774
+ obj: PermissionGroupByUser
775
+ ) => any;
776
+ export declare const ListPermissionGroupsByUserResponseFilterSensitiveLog: (
777
+ obj: ListPermissionGroupsByUserResponse
778
+ ) => any;
779
+ export declare const ListUsersRequestFilterSensitiveLog: (
780
+ obj: ListUsersRequest
781
+ ) => any;
782
+ export declare const UserFilterSensitiveLog: (obj: User) => any;
783
+ export declare const ListUsersResponseFilterSensitiveLog: (
784
+ obj: ListUsersResponse
785
+ ) => any;
786
+ export declare const ListUsersByPermissionGroupRequestFilterSensitiveLog: (
787
+ obj: ListUsersByPermissionGroupRequest
788
+ ) => any;
789
+ export declare const UserByPermissionGroupFilterSensitiveLog: (
790
+ obj: UserByPermissionGroup
791
+ ) => any;
792
+ export declare const ListUsersByPermissionGroupResponseFilterSensitiveLog: (
793
+ obj: ListUsersByPermissionGroupResponse
794
+ ) => any;
795
+ export declare const ResetUserPasswordRequestFilterSensitiveLog: (
796
+ obj: ResetUserPasswordRequest
797
+ ) => any;
798
+ export declare const ResetUserPasswordResponseFilterSensitiveLog: (
799
+ obj: ResetUserPasswordResponse
800
+ ) => any;
801
+ export declare const UpdateChangesetRequestFilterSensitiveLog: (
802
+ obj: UpdateChangesetRequest
803
+ ) => any;
804
+ export declare const UpdateChangesetResponseFilterSensitiveLog: (
805
+ obj: UpdateChangesetResponse
806
+ ) => any;
807
+ export declare const UpdateDatasetRequestFilterSensitiveLog: (
808
+ obj: UpdateDatasetRequest
809
+ ) => any;
810
+ export declare const UpdateDatasetResponseFilterSensitiveLog: (
811
+ obj: UpdateDatasetResponse
812
+ ) => any;
813
+ export declare const UpdatePermissionGroupRequestFilterSensitiveLog: (
814
+ obj: UpdatePermissionGroupRequest
815
+ ) => any;
816
+ export declare const UpdatePermissionGroupResponseFilterSensitiveLog: (
817
+ obj: UpdatePermissionGroupResponse
818
+ ) => any;
819
+ export declare const UpdateUserRequestFilterSensitiveLog: (
820
+ obj: UpdateUserRequest
821
+ ) => any;
822
+ export declare const UpdateUserResponseFilterSensitiveLog: (
823
+ obj: UpdateUserResponse
824
+ ) => any;