@aws-sdk/client-docdb 3.46.0 → 3.48.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.
@@ -1,10 +1,11 @@
1
- import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { DocDBClientConfig } from "./DocDBClient";
3
3
  /**
4
4
  * @internal
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: DocDBClientConfig) => {
7
7
  runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
8
9
  base64Decoder: import("@aws-sdk/types").Decoder;
9
10
  base64Encoder: import("@aws-sdk/types").Encoder;
10
11
  bodyLengthChecker: (body: any) => number | undefined;
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: DocDBClientConfig) => {
12
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
13
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
14
15
  region: string | import("@aws-sdk/types").Provider<any>;
15
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | FetchHttpHandler;
16
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
16
17
  retryMode: string | import("@aws-sdk/types").Provider<string>;
17
18
  sha256: import("@aws-sdk/types").HashConstructor;
18
19
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -1,18 +1,19 @@
1
- import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { DocDBClientConfig } from "./DocDBClient";
3
3
  /**
4
4
  * @internal
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: DocDBClientConfig) => {
7
7
  runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
8
9
  base64Decoder: import("@aws-sdk/types").Decoder;
9
10
  base64Encoder: import("@aws-sdk/types").Encoder;
10
11
  bodyLengthChecker: (body: any) => number | undefined;
11
- credentialDefaultProvider: import("@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers").DefaultCredentialProvider;
12
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
12
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
13
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
14
15
  region: string | import("@aws-sdk/types").Provider<string>;
15
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | NodeHttpHandler;
16
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
16
17
  retryMode: string | import("@aws-sdk/types").Provider<string>;
17
18
  sha256: import("@aws-sdk/types").HashConstructor;
18
19
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: DocDBClientConfig) => {
25
25
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
26
  regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
27
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
28
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
28
29
  endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
30
  tls?: boolean | undefined;
30
31
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
4
4
  import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
8
  import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { AddSourceIdentifierToSubscriptionCommandInput, AddSourceIdentifierToSubscriptionCommandOutput } from "./commands/AddSourceIdentifierToSubscriptionCommand";
10
10
  import { AddTagsToResourceCommandInput, AddTagsToResourceCommandOutput } from "./commands/AddTagsToResourceCommand";
@@ -104,6 +104,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
104
104
  regionInfoProvider?: RegionInfoProvider;
105
105
 
106
106
  defaultUserAgentProvider?: Provider<__UserAgent>;
107
+
108
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
107
109
  }
108
110
  declare type DocDBClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
109
111
 
@@ -51,20 +51,12 @@ export interface SourceNotFoundFault extends __SmithyException, $MetadataBearer
51
51
  $fault: "client";
52
52
  message?: string;
53
53
  }
54
- export declare namespace SourceNotFoundFault {
55
-
56
- const filterSensitiveLog: (obj: SourceNotFoundFault) => any;
57
- }
58
54
 
59
55
  export interface SubscriptionNotFoundFault extends __SmithyException, $MetadataBearer {
60
56
  name: "SubscriptionNotFoundFault";
61
57
  $fault: "client";
62
58
  message?: string;
63
59
  }
64
- export declare namespace SubscriptionNotFoundFault {
65
-
66
- const filterSensitiveLog: (obj: SubscriptionNotFoundFault) => any;
67
- }
68
60
 
69
61
  export interface Tag {
70
62
 
@@ -93,30 +85,18 @@ export interface DBClusterNotFoundFault extends __SmithyException, $MetadataBear
93
85
  $fault: "client";
94
86
  message?: string;
95
87
  }
96
- export declare namespace DBClusterNotFoundFault {
97
-
98
- const filterSensitiveLog: (obj: DBClusterNotFoundFault) => any;
99
- }
100
88
 
101
89
  export interface DBInstanceNotFoundFault extends __SmithyException, $MetadataBearer {
102
90
  name: "DBInstanceNotFoundFault";
103
91
  $fault: "client";
104
92
  message?: string;
105
93
  }
106
- export declare namespace DBInstanceNotFoundFault {
107
-
108
- const filterSensitiveLog: (obj: DBInstanceNotFoundFault) => any;
109
- }
110
94
 
111
95
  export interface DBSnapshotNotFoundFault extends __SmithyException, $MetadataBearer {
112
96
  name: "DBSnapshotNotFoundFault";
113
97
  $fault: "client";
114
98
  message?: string;
115
99
  }
116
- export declare namespace DBSnapshotNotFoundFault {
117
-
118
- const filterSensitiveLog: (obj: DBSnapshotNotFoundFault) => any;
119
- }
120
100
 
121
101
  export interface ApplyPendingMaintenanceActionMessage {
122
102
 
@@ -174,30 +154,18 @@ export interface InvalidDBClusterStateFault extends __SmithyException, $Metadata
174
154
  $fault: "client";
175
155
  message?: string;
176
156
  }
177
- export declare namespace InvalidDBClusterStateFault {
178
-
179
- const filterSensitiveLog: (obj: InvalidDBClusterStateFault) => any;
180
- }
181
157
 
182
158
  export interface InvalidDBInstanceStateFault extends __SmithyException, $MetadataBearer {
183
159
  name: "InvalidDBInstanceStateFault";
184
160
  $fault: "client";
185
161
  message?: string;
186
162
  }
187
- export declare namespace InvalidDBInstanceStateFault {
188
-
189
- const filterSensitiveLog: (obj: InvalidDBInstanceStateFault) => any;
190
- }
191
163
 
192
164
  export interface ResourceNotFoundFault extends __SmithyException, $MetadataBearer {
193
165
  name: "ResourceNotFoundFault";
194
166
  $fault: "client";
195
167
  message?: string;
196
168
  }
197
- export declare namespace ResourceNotFoundFault {
198
-
199
- const filterSensitiveLog: (obj: ResourceNotFoundFault) => any;
200
- }
201
169
 
202
170
  export interface CopyDBClusterParameterGroupMessage {
203
171
 
@@ -242,30 +210,18 @@ export interface DBParameterGroupAlreadyExistsFault extends __SmithyException, $
242
210
  $fault: "client";
243
211
  message?: string;
244
212
  }
245
- export declare namespace DBParameterGroupAlreadyExistsFault {
246
-
247
- const filterSensitiveLog: (obj: DBParameterGroupAlreadyExistsFault) => any;
248
- }
249
213
 
250
214
  export interface DBParameterGroupNotFoundFault extends __SmithyException, $MetadataBearer {
251
215
  name: "DBParameterGroupNotFoundFault";
252
216
  $fault: "client";
253
217
  message?: string;
254
218
  }
255
- export declare namespace DBParameterGroupNotFoundFault {
256
-
257
- const filterSensitiveLog: (obj: DBParameterGroupNotFoundFault) => any;
258
- }
259
219
 
260
220
  export interface DBParameterGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
261
221
  name: "DBParameterGroupQuotaExceededFault";
262
222
  $fault: "client";
263
223
  message?: string;
264
224
  }
265
- export declare namespace DBParameterGroupQuotaExceededFault {
266
-
267
- const filterSensitiveLog: (obj: DBParameterGroupQuotaExceededFault) => any;
268
- }
269
225
 
270
226
  export interface CopyDBClusterSnapshotMessage {
271
227
 
@@ -340,50 +296,30 @@ export interface DBClusterSnapshotAlreadyExistsFault extends __SmithyException,
340
296
  $fault: "client";
341
297
  message?: string;
342
298
  }
343
- export declare namespace DBClusterSnapshotAlreadyExistsFault {
344
-
345
- const filterSensitiveLog: (obj: DBClusterSnapshotAlreadyExistsFault) => any;
346
- }
347
299
 
348
300
  export interface DBClusterSnapshotNotFoundFault extends __SmithyException, $MetadataBearer {
349
301
  name: "DBClusterSnapshotNotFoundFault";
350
302
  $fault: "client";
351
303
  message?: string;
352
304
  }
353
- export declare namespace DBClusterSnapshotNotFoundFault {
354
-
355
- const filterSensitiveLog: (obj: DBClusterSnapshotNotFoundFault) => any;
356
- }
357
305
 
358
306
  export interface InvalidDBClusterSnapshotStateFault extends __SmithyException, $MetadataBearer {
359
307
  name: "InvalidDBClusterSnapshotStateFault";
360
308
  $fault: "client";
361
309
  message?: string;
362
310
  }
363
- export declare namespace InvalidDBClusterSnapshotStateFault {
364
-
365
- const filterSensitiveLog: (obj: InvalidDBClusterSnapshotStateFault) => any;
366
- }
367
311
 
368
312
  export interface KMSKeyNotAccessibleFault extends __SmithyException, $MetadataBearer {
369
313
  name: "KMSKeyNotAccessibleFault";
370
314
  $fault: "client";
371
315
  message?: string;
372
316
  }
373
- export declare namespace KMSKeyNotAccessibleFault {
374
-
375
- const filterSensitiveLog: (obj: KMSKeyNotAccessibleFault) => any;
376
- }
377
317
 
378
318
  export interface SnapshotQuotaExceededFault extends __SmithyException, $MetadataBearer {
379
319
  name: "SnapshotQuotaExceededFault";
380
320
  $fault: "client";
381
321
  message?: string;
382
322
  }
383
- export declare namespace SnapshotQuotaExceededFault {
384
-
385
- const filterSensitiveLog: (obj: SnapshotQuotaExceededFault) => any;
386
- }
387
323
 
388
324
  export interface CreateDBClusterMessage {
389
325
 
@@ -551,120 +487,72 @@ export interface DBClusterAlreadyExistsFault extends __SmithyException, $Metadat
551
487
  $fault: "client";
552
488
  message?: string;
553
489
  }
554
- export declare namespace DBClusterAlreadyExistsFault {
555
-
556
- const filterSensitiveLog: (obj: DBClusterAlreadyExistsFault) => any;
557
- }
558
490
 
559
491
  export interface DBClusterParameterGroupNotFoundFault extends __SmithyException, $MetadataBearer {
560
492
  name: "DBClusterParameterGroupNotFoundFault";
561
493
  $fault: "client";
562
494
  message?: string;
563
495
  }
564
- export declare namespace DBClusterParameterGroupNotFoundFault {
565
-
566
- const filterSensitiveLog: (obj: DBClusterParameterGroupNotFoundFault) => any;
567
- }
568
496
 
569
497
  export interface DBClusterQuotaExceededFault extends __SmithyException, $MetadataBearer {
570
498
  name: "DBClusterQuotaExceededFault";
571
499
  $fault: "client";
572
500
  message?: string;
573
501
  }
574
- export declare namespace DBClusterQuotaExceededFault {
575
-
576
- const filterSensitiveLog: (obj: DBClusterQuotaExceededFault) => any;
577
- }
578
502
 
579
503
  export interface DBSubnetGroupDoesNotCoverEnoughAZs extends __SmithyException, $MetadataBearer {
580
504
  name: "DBSubnetGroupDoesNotCoverEnoughAZs";
581
505
  $fault: "client";
582
506
  message?: string;
583
507
  }
584
- export declare namespace DBSubnetGroupDoesNotCoverEnoughAZs {
585
-
586
- const filterSensitiveLog: (obj: DBSubnetGroupDoesNotCoverEnoughAZs) => any;
587
- }
588
508
 
589
509
  export interface DBSubnetGroupNotFoundFault extends __SmithyException, $MetadataBearer {
590
510
  name: "DBSubnetGroupNotFoundFault";
591
511
  $fault: "client";
592
512
  message?: string;
593
513
  }
594
- export declare namespace DBSubnetGroupNotFoundFault {
595
-
596
- const filterSensitiveLog: (obj: DBSubnetGroupNotFoundFault) => any;
597
- }
598
514
 
599
515
  export interface GlobalClusterNotFoundFault extends __SmithyException, $MetadataBearer {
600
516
  name: "GlobalClusterNotFoundFault";
601
517
  $fault: "client";
602
518
  message?: string;
603
519
  }
604
- export declare namespace GlobalClusterNotFoundFault {
605
-
606
- const filterSensitiveLog: (obj: GlobalClusterNotFoundFault) => any;
607
- }
608
520
 
609
521
  export interface InsufficientStorageClusterCapacityFault extends __SmithyException, $MetadataBearer {
610
522
  name: "InsufficientStorageClusterCapacityFault";
611
523
  $fault: "client";
612
524
  message?: string;
613
525
  }
614
- export declare namespace InsufficientStorageClusterCapacityFault {
615
-
616
- const filterSensitiveLog: (obj: InsufficientStorageClusterCapacityFault) => any;
617
- }
618
526
 
619
527
  export interface InvalidDBSubnetGroupStateFault extends __SmithyException, $MetadataBearer {
620
528
  name: "InvalidDBSubnetGroupStateFault";
621
529
  $fault: "client";
622
530
  message?: string;
623
531
  }
624
- export declare namespace InvalidDBSubnetGroupStateFault {
625
-
626
- const filterSensitiveLog: (obj: InvalidDBSubnetGroupStateFault) => any;
627
- }
628
532
 
629
533
  export interface InvalidGlobalClusterStateFault extends __SmithyException, $MetadataBearer {
630
534
  name: "InvalidGlobalClusterStateFault";
631
535
  $fault: "client";
632
536
  message?: string;
633
537
  }
634
- export declare namespace InvalidGlobalClusterStateFault {
635
-
636
- const filterSensitiveLog: (obj: InvalidGlobalClusterStateFault) => any;
637
- }
638
538
 
639
539
  export interface InvalidSubnet extends __SmithyException, $MetadataBearer {
640
540
  name: "InvalidSubnet";
641
541
  $fault: "client";
642
542
  message?: string;
643
543
  }
644
- export declare namespace InvalidSubnet {
645
-
646
- const filterSensitiveLog: (obj: InvalidSubnet) => any;
647
- }
648
544
 
649
545
  export interface InvalidVPCNetworkStateFault extends __SmithyException, $MetadataBearer {
650
546
  name: "InvalidVPCNetworkStateFault";
651
547
  $fault: "client";
652
548
  message?: string;
653
549
  }
654
- export declare namespace InvalidVPCNetworkStateFault {
655
-
656
- const filterSensitiveLog: (obj: InvalidVPCNetworkStateFault) => any;
657
- }
658
550
 
659
551
  export interface StorageQuotaExceededFault extends __SmithyException, $MetadataBearer {
660
552
  name: "StorageQuotaExceededFault";
661
553
  $fault: "client";
662
554
  message?: string;
663
555
  }
664
- export declare namespace StorageQuotaExceededFault {
665
-
666
- const filterSensitiveLog: (obj: StorageQuotaExceededFault) => any;
667
- }
668
556
 
669
557
  export interface CreateDBClusterParameterGroupMessage {
670
558
 
@@ -715,10 +603,6 @@ export interface AuthorizationNotFoundFault extends __SmithyException, $Metadata
715
603
  $fault: "client";
716
604
  message?: string;
717
605
  }
718
- export declare namespace AuthorizationNotFoundFault {
719
-
720
- const filterSensitiveLog: (obj: AuthorizationNotFoundFault) => any;
721
- }
722
606
 
723
607
  export interface CreateDBInstanceMessage {
724
608
 
@@ -932,50 +816,30 @@ export interface DBInstanceAlreadyExistsFault extends __SmithyException, $Metada
932
816
  $fault: "client";
933
817
  message?: string;
934
818
  }
935
- export declare namespace DBInstanceAlreadyExistsFault {
936
-
937
- const filterSensitiveLog: (obj: DBInstanceAlreadyExistsFault) => any;
938
- }
939
819
 
940
820
  export interface DBSecurityGroupNotFoundFault extends __SmithyException, $MetadataBearer {
941
821
  name: "DBSecurityGroupNotFoundFault";
942
822
  $fault: "client";
943
823
  message?: string;
944
824
  }
945
- export declare namespace DBSecurityGroupNotFoundFault {
946
-
947
- const filterSensitiveLog: (obj: DBSecurityGroupNotFoundFault) => any;
948
- }
949
825
 
950
826
  export interface InstanceQuotaExceededFault extends __SmithyException, $MetadataBearer {
951
827
  name: "InstanceQuotaExceededFault";
952
828
  $fault: "client";
953
829
  message?: string;
954
830
  }
955
- export declare namespace InstanceQuotaExceededFault {
956
-
957
- const filterSensitiveLog: (obj: InstanceQuotaExceededFault) => any;
958
- }
959
831
 
960
832
  export interface InsufficientDBInstanceCapacityFault extends __SmithyException, $MetadataBearer {
961
833
  name: "InsufficientDBInstanceCapacityFault";
962
834
  $fault: "client";
963
835
  message?: string;
964
836
  }
965
- export declare namespace InsufficientDBInstanceCapacityFault {
966
-
967
- const filterSensitiveLog: (obj: InsufficientDBInstanceCapacityFault) => any;
968
- }
969
837
 
970
838
  export interface StorageTypeNotSupportedFault extends __SmithyException, $MetadataBearer {
971
839
  name: "StorageTypeNotSupportedFault";
972
840
  $fault: "client";
973
841
  message?: string;
974
842
  }
975
- export declare namespace StorageTypeNotSupportedFault {
976
-
977
- const filterSensitiveLog: (obj: StorageTypeNotSupportedFault) => any;
978
- }
979
843
 
980
844
  export interface CreateDBSubnetGroupMessage {
981
845
 
@@ -1005,30 +869,18 @@ export interface DBSubnetGroupAlreadyExistsFault extends __SmithyException, $Met
1005
869
  $fault: "client";
1006
870
  message?: string;
1007
871
  }
1008
- export declare namespace DBSubnetGroupAlreadyExistsFault {
1009
-
1010
- const filterSensitiveLog: (obj: DBSubnetGroupAlreadyExistsFault) => any;
1011
- }
1012
872
 
1013
873
  export interface DBSubnetGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
1014
874
  name: "DBSubnetGroupQuotaExceededFault";
1015
875
  $fault: "client";
1016
876
  message?: string;
1017
877
  }
1018
- export declare namespace DBSubnetGroupQuotaExceededFault {
1019
-
1020
- const filterSensitiveLog: (obj: DBSubnetGroupQuotaExceededFault) => any;
1021
- }
1022
878
 
1023
879
  export interface DBSubnetQuotaExceededFault extends __SmithyException, $MetadataBearer {
1024
880
  name: "DBSubnetQuotaExceededFault";
1025
881
  $fault: "client";
1026
882
  message?: string;
1027
883
  }
1028
- export declare namespace DBSubnetQuotaExceededFault {
1029
-
1030
- const filterSensitiveLog: (obj: DBSubnetQuotaExceededFault) => any;
1031
- }
1032
884
 
1033
885
  export interface CreateEventSubscriptionMessage {
1034
886
 
@@ -1064,60 +916,36 @@ export interface EventSubscriptionQuotaExceededFault extends __SmithyException,
1064
916
  $fault: "client";
1065
917
  message?: string;
1066
918
  }
1067
- export declare namespace EventSubscriptionQuotaExceededFault {
1068
-
1069
- const filterSensitiveLog: (obj: EventSubscriptionQuotaExceededFault) => any;
1070
- }
1071
919
 
1072
920
  export interface SNSInvalidTopicFault extends __SmithyException, $MetadataBearer {
1073
921
  name: "SNSInvalidTopicFault";
1074
922
  $fault: "client";
1075
923
  message?: string;
1076
924
  }
1077
- export declare namespace SNSInvalidTopicFault {
1078
-
1079
- const filterSensitiveLog: (obj: SNSInvalidTopicFault) => any;
1080
- }
1081
925
 
1082
926
  export interface SNSNoAuthorizationFault extends __SmithyException, $MetadataBearer {
1083
927
  name: "SNSNoAuthorizationFault";
1084
928
  $fault: "client";
1085
929
  message?: string;
1086
930
  }
1087
- export declare namespace SNSNoAuthorizationFault {
1088
-
1089
- const filterSensitiveLog: (obj: SNSNoAuthorizationFault) => any;
1090
- }
1091
931
 
1092
932
  export interface SNSTopicArnNotFoundFault extends __SmithyException, $MetadataBearer {
1093
933
  name: "SNSTopicArnNotFoundFault";
1094
934
  $fault: "client";
1095
935
  message?: string;
1096
936
  }
1097
- export declare namespace SNSTopicArnNotFoundFault {
1098
-
1099
- const filterSensitiveLog: (obj: SNSTopicArnNotFoundFault) => any;
1100
- }
1101
937
 
1102
938
  export interface SubscriptionAlreadyExistFault extends __SmithyException, $MetadataBearer {
1103
939
  name: "SubscriptionAlreadyExistFault";
1104
940
  $fault: "client";
1105
941
  message?: string;
1106
942
  }
1107
- export declare namespace SubscriptionAlreadyExistFault {
1108
-
1109
- const filterSensitiveLog: (obj: SubscriptionAlreadyExistFault) => any;
1110
- }
1111
943
 
1112
944
  export interface SubscriptionCategoryNotFoundFault extends __SmithyException, $MetadataBearer {
1113
945
  name: "SubscriptionCategoryNotFoundFault";
1114
946
  $fault: "client";
1115
947
  message?: string;
1116
948
  }
1117
- export declare namespace SubscriptionCategoryNotFoundFault {
1118
-
1119
- const filterSensitiveLog: (obj: SubscriptionCategoryNotFoundFault) => any;
1120
- }
1121
949
 
1122
950
  export interface CreateGlobalClusterMessage {
1123
951
 
@@ -1193,20 +1021,12 @@ export interface GlobalClusterAlreadyExistsFault extends __SmithyException, $Met
1193
1021
  $fault: "client";
1194
1022
  message?: string;
1195
1023
  }
1196
- export declare namespace GlobalClusterAlreadyExistsFault {
1197
-
1198
- const filterSensitiveLog: (obj: GlobalClusterAlreadyExistsFault) => any;
1199
- }
1200
1024
 
1201
1025
  export interface GlobalClusterQuotaExceededFault extends __SmithyException, $MetadataBearer {
1202
1026
  name: "GlobalClusterQuotaExceededFault";
1203
1027
  $fault: "client";
1204
1028
  message?: string;
1205
1029
  }
1206
- export declare namespace GlobalClusterQuotaExceededFault {
1207
-
1208
- const filterSensitiveLog: (obj: GlobalClusterQuotaExceededFault) => any;
1209
- }
1210
1030
 
1211
1031
  export interface DeleteDBClusterMessage {
1212
1032
 
@@ -1243,10 +1063,6 @@ export interface InvalidDBParameterGroupStateFault extends __SmithyException, $M
1243
1063
  $fault: "client";
1244
1064
  message?: string;
1245
1065
  }
1246
- export declare namespace InvalidDBParameterGroupStateFault {
1247
-
1248
- const filterSensitiveLog: (obj: InvalidDBParameterGroupStateFault) => any;
1249
- }
1250
1066
 
1251
1067
  export interface DeleteDBClusterSnapshotMessage {
1252
1068
 
@@ -1270,10 +1086,6 @@ export interface DBSnapshotAlreadyExistsFault extends __SmithyException, $Metada
1270
1086
  $fault: "client";
1271
1087
  message?: string;
1272
1088
  }
1273
- export declare namespace DBSnapshotAlreadyExistsFault {
1274
-
1275
- const filterSensitiveLog: (obj: DBSnapshotAlreadyExistsFault) => any;
1276
- }
1277
1089
 
1278
1090
  export interface DeleteDBInstanceMessage {
1279
1091
 
@@ -1306,10 +1118,6 @@ export interface InvalidDBSubnetStateFault extends __SmithyException, $MetadataB
1306
1118
  $fault: "client";
1307
1119
  message?: string;
1308
1120
  }
1309
- export declare namespace InvalidDBSubnetStateFault {
1310
-
1311
- const filterSensitiveLog: (obj: InvalidDBSubnetStateFault) => any;
1312
- }
1313
1121
 
1314
1122
  export interface DeleteEventSubscriptionMessage {
1315
1123
 
@@ -1333,10 +1141,6 @@ export interface InvalidEventSubscriptionStateFault extends __SmithyException, $
1333
1141
  $fault: "client";
1334
1142
  message?: string;
1335
1143
  }
1336
- export declare namespace InvalidEventSubscriptionStateFault {
1337
-
1338
- const filterSensitiveLog: (obj: InvalidEventSubscriptionStateFault) => any;
1339
- }
1340
1144
 
1341
1145
  export interface DeleteGlobalClusterMessage {
1342
1146
 
@@ -1389,10 +1193,6 @@ export interface CertificateNotFoundFault extends __SmithyException, $MetadataBe
1389
1193
  $fault: "client";
1390
1194
  message?: string;
1391
1195
  }
1392
- export declare namespace CertificateNotFoundFault {
1393
-
1394
- const filterSensitiveLog: (obj: CertificateNotFoundFault) => any;
1395
- }
1396
1196
 
1397
1197
  export interface Filter {
1398
1198
 
@@ -2024,10 +1824,6 @@ export interface InvalidDBSecurityGroupStateFault extends __SmithyException, $Me
2024
1824
  $fault: "client";
2025
1825
  message?: string;
2026
1826
  }
2027
- export declare namespace InvalidDBSecurityGroupStateFault {
2028
-
2029
- const filterSensitiveLog: (obj: InvalidDBSecurityGroupStateFault) => any;
2030
- }
2031
1827
 
2032
1828
  export interface CloudwatchLogsExportConfiguration {
2033
1829
 
@@ -2129,20 +1925,12 @@ export interface SharedSnapshotQuotaExceededFault extends __SmithyException, $Me
2129
1925
  $fault: "client";
2130
1926
  message?: string;
2131
1927
  }
2132
- export declare namespace SharedSnapshotQuotaExceededFault {
2133
-
2134
- const filterSensitiveLog: (obj: SharedSnapshotQuotaExceededFault) => any;
2135
- }
2136
1928
 
2137
1929
  export interface DBUpgradeDependencyFailureFault extends __SmithyException, $MetadataBearer {
2138
1930
  name: "DBUpgradeDependencyFailureFault";
2139
1931
  $fault: "client";
2140
1932
  message?: string;
2141
1933
  }
2142
- export declare namespace DBUpgradeDependencyFailureFault {
2143
-
2144
- const filterSensitiveLog: (obj: DBUpgradeDependencyFailureFault) => any;
2145
- }
2146
1934
 
2147
1935
  export interface ModifyDBInstanceMessage {
2148
1936
 
@@ -2201,10 +1989,6 @@ export interface SubnetAlreadyInUse extends __SmithyException, $MetadataBearer {
2201
1989
  $fault: "client";
2202
1990
  message?: string;
2203
1991
  }
2204
- export declare namespace SubnetAlreadyInUse {
2205
-
2206
- const filterSensitiveLog: (obj: SubnetAlreadyInUse) => any;
2207
- }
2208
1992
 
2209
1993
  export interface ModifyEventSubscriptionMessage {
2210
1994
 
@@ -2338,30 +2122,18 @@ export interface InsufficientDBClusterCapacityFault extends __SmithyException, $
2338
2122
  $fault: "client";
2339
2123
  message?: string;
2340
2124
  }
2341
- export declare namespace InsufficientDBClusterCapacityFault {
2342
-
2343
- const filterSensitiveLog: (obj: InsufficientDBClusterCapacityFault) => any;
2344
- }
2345
2125
 
2346
2126
  export interface InvalidDBSnapshotStateFault extends __SmithyException, $MetadataBearer {
2347
2127
  name: "InvalidDBSnapshotStateFault";
2348
2128
  $fault: "client";
2349
2129
  message?: string;
2350
2130
  }
2351
- export declare namespace InvalidDBSnapshotStateFault {
2352
-
2353
- const filterSensitiveLog: (obj: InvalidDBSnapshotStateFault) => any;
2354
- }
2355
2131
 
2356
2132
  export interface InvalidRestoreFault extends __SmithyException, $MetadataBearer {
2357
2133
  name: "InvalidRestoreFault";
2358
2134
  $fault: "client";
2359
2135
  message?: string;
2360
2136
  }
2361
- export declare namespace InvalidRestoreFault {
2362
-
2363
- const filterSensitiveLog: (obj: InvalidRestoreFault) => any;
2364
- }
2365
2137
 
2366
2138
  export interface RestoreDBClusterFromSnapshotMessage {
2367
2139
 
@@ -1,8 +1,9 @@
1
- import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { DocDBClientConfig } from "./DocDBClient";
3
3
 
4
4
  export declare const getRuntimeConfig: (config: DocDBClientConfig) => {
5
5
  runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
6
7
  base64Decoder: import("@aws-sdk/types").Decoder;
7
8
  base64Encoder: import("@aws-sdk/types").Encoder;
8
9
  bodyLengthChecker: (body: any) => number | undefined;
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: DocDBClientConfig) => {
10
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
11
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
12
13
  region: string | import("@aws-sdk/types").Provider<any>;
13
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | FetchHttpHandler;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
14
15
  retryMode: string | import("@aws-sdk/types").Provider<string>;
15
16
  sha256: import("@aws-sdk/types").HashConstructor;
16
17
  streamCollector: import("@aws-sdk/types").StreamCollector;