-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathapi.json
More file actions
1457 lines (1457 loc) · 55.1 KB
/
api.json
File metadata and controls
1457 lines (1457 loc) · 55.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"@smithy/abort-controller": {
"AbortController": "function",
"AbortHandler": "type(interface)",
"AbortSignal": "function",
"IAbortController": "type(interface)",
"IAbortSignal": "type(interface)"
},
"@smithy/chunked-blob-reader": {
"blobReader": "function"
},
"@smithy/chunked-blob-reader-native": {
"blobReader": "function"
},
"@smithy/config-resolver": {
"CONFIG_USE_DUALSTACK_ENDPOINT": "string",
"CONFIG_USE_FIPS_ENDPOINT": "string",
"CustomEndpointsInputConfig": "type(interface)",
"CustomEndpointsResolvedConfig": "type(interface)",
"DEFAULT_USE_DUALSTACK_ENDPOINT": "boolean",
"DEFAULT_USE_FIPS_ENDPOINT": "boolean",
"EndpointsInputConfig": "type(interface)",
"EndpointsResolvedConfig": "type(interface)",
"EndpointVariant": "type(object)",
"EndpointVariantTag": "type(union)",
"ENV_USE_DUALSTACK_ENDPOINT": "string",
"ENV_USE_FIPS_ENDPOINT": "string",
"getRegionInfo": "function",
"GetRegionInfoOptions": "type(interface)",
"NODE_REGION_CONFIG_FILE_OPTIONS": "object",
"NODE_REGION_CONFIG_OPTIONS": "object",
"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS": "object",
"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS": "object",
"nodeDualstackConfigSelectors": "object",
"nodeFipsConfigSelectors": "object",
"PartitionHash": "type(object)",
"REGION_ENV_NAME": "string",
"REGION_INI_NAME": "string",
"RegionHash": "type(object)",
"RegionInputConfig": "type(interface)",
"RegionResolvedConfig": "type(interface)",
"resolveCustomEndpointsConfig": "function",
"resolveEndpointsConfig": "function",
"resolveRegionConfig": "function"
},
"@smithy/core": {
"createIsIdentityExpiredFunction": "function",
"createPaginator": "function",
"DefaultIdentityProviderConfig": "function",
"doesIdentityRequireRefresh": "function",
"EXPIRATION_MS": "number",
"getHttpAuthSchemeEndpointRuleSetPlugin": "function",
"getHttpAuthSchemePlugin": "function",
"getHttpSigningPlugin": "function",
"getSmithyContext": "function",
"HttpApiKeyAuthSigner": "function",
"httpAuthSchemeEndpointRuleSetMiddlewareOptions": "object",
"httpAuthSchemeMiddleware": "function",
"httpAuthSchemeMiddlewareOptions": "object",
"HttpBearerAuthSigner": "function",
"httpSigningMiddleware": "function",
"httpSigningMiddlewareOptions": "object",
"isIdentityExpired": "function",
"MemoizedIdentityProvider": "type(interface)",
"memoizeIdentityProvider": "function",
"NoAuthSigner": "function",
"normalizeProvider": "function",
"PreviouslyResolved": "type(interface)",
"requestBuilder": "function",
"setFeature": "function"
},
"@smithy/core/cbor": {
"buildHttpRpcRequest": "function",
"cbor": "object",
"CborCodec": "function",
"CborShapeDeserializer": "function",
"CborShapeSerializer": "function",
"checkCborResponse": "function",
"dateToTag": "function",
"loadSmithyRpcV2CborErrorCode": "function",
"parseCborBody": "function",
"parseCborErrorBody": "function",
"SmithyRpcV2CborProtocol": "function",
"tag": "function",
"tagSymbol": "symbol"
},
"@smithy/core/checksum": {
"blobHasher": "function",
"blobReader": "function",
"fileStreamHasher": "function(node-only)",
"Md5": "function",
"readableStreamHasher": "function(node-only)"
},
"@smithy/core/client": {
"_json": "function",
"AlgorithmId": "object",
"checkExceptions": "function",
"ChecksumAlgorithm": "type(interface)",
"ChecksumConfiguration": "type(interface)",
"Client": "function",
"Command": "function",
"CommandImpl": "type(interface)",
"ConditionalLazyValueInstruction": "type(object)",
"ConditionalValueInstruction": "type(object)",
"constructStack": "function",
"convertMap": "function",
"createAggregatedClient": "function",
"createWaiter": "function",
"decorateServiceException": "function",
"DefaultExtensionRuntimeConfigType": "type(intersection)",
"DefaultsMode": "type(union)",
"DefaultsModeConfigs": "type(interface)",
"emitWarningIfUnsupportedVersion": "function",
"ExceptionOptionType": "type(object)",
"FilterStatus": "type(alias)",
"FilterStatusSupplier": "type(object)",
"getArrayIfSingleItem": "function",
"getChecksumConfiguration": "function",
"getDefaultClientConfiguration": "function",
"getDefaultExtensionConfiguration": "function",
"getRetryConfiguration": "function",
"getSmithyContext": "function",
"getValueFromTextNode": "function",
"invalidFunction": "function",
"invalidProvider": "function",
"isSerializableHeaderValue": "function",
"LazyValueInstruction": "type(object)",
"loadConfigsForDefaultMode": "function",
"map": "function",
"NoOpLogger": "function",
"normalizeProvider": "function",
"ObjectMappingInstruction": "type(alias)",
"ObjectMappingInstructions": "type(object)",
"PartialChecksumRuntimeConfigType": "type(object)",
"PartialRetryRuntimeConfigType": "type(object)",
"resolveChecksumRuntimeConfig": "function",
"ResolvedDefaultsMode": "type(union)",
"resolveDefaultRuntimeConfig": "function",
"resolveRetryRuntimeConfig": "function",
"schemaLogFilter": "function",
"SENSITIVE_STRING": "string",
"serializeDateTime": "function",
"serializeFloat": "function",
"ServiceException": "function",
"ServiceExceptionOptions": "type(interface)",
"SimpleValueInstruction": "type(object)",
"SmithyConfiguration": "type(interface)",
"SmithyResolvedConfiguration": "type(object)",
"SourceMappingInstruction": "type(object)",
"SourceMappingInstructions": "type(object)",
"take": "function",
"throwDefaultError": "function",
"UnfilteredValue": "type(alias)",
"Value": "type(alias)",
"ValueFilteringFunction": "type(object)",
"ValueMapper": "type(object)",
"ValueSupplier": "type(object)",
"WaiterConfiguration": "type(interface)",
"WaiterOptions": "type(intersection)",
"WaiterResult": "type(object)",
"waiterServiceDefaults": "object",
"WaiterState": "object",
"withBaseException": "function"
},
"@smithy/core/config": {
"booleanSelector": "function",
"chain": "function",
"CONFIG_PREFIX_SEPARATOR": "string(node-only)",
"CONFIG_USE_DUALSTACK_ENDPOINT": "string(node-only)",
"CONFIG_USE_FIPS_ENDPOINT": "string(node-only)",
"CredentialsProviderError": "function",
"CustomEndpointsInputConfig": "type(interface)",
"CustomEndpointsResolvedConfig": "type(interface)",
"DEFAULT_PROFILE": "string",
"DEFAULT_USE_DUALSTACK_ENDPOINT": "boolean",
"DEFAULT_USE_FIPS_ENDPOINT": "boolean",
"EndpointsInputConfig": "type(interface)",
"EndpointsResolvedConfig": "type(interface)",
"EndpointVariant": "type(object)",
"EndpointVariantTag": "type(union)",
"ENV_PROFILE": "string(node-only)",
"ENV_USE_DUALSTACK_ENDPOINT": "string(node-only)",
"ENV_USE_FIPS_ENDPOINT": "string(node-only)",
"EnvOptions": "type(interface)",
"externalDataInterceptor": "object(node-only)",
"fromStatic": "function(node-only)",
"fromValue": "function",
"getHomeDir": "function(node-only)",
"getProfileName": "function(node-only)",
"getRegionInfo": "function",
"GetRegionInfoOptions": "type(interface)",
"getSSOTokenFilepath": "function(node-only)",
"getSSOTokenFromFile": "function(node-only)",
"GetterFromConfig": "type(object)",
"GetterFromEnv": "type(object)",
"loadConfig": "function(node-only)",
"LoadedConfigSelectors": "type(interface)",
"loadSharedConfigFiles": "function(node-only)",
"loadSsoSessionData": "function(node-only)",
"LocalConfigOptions": "type(intersection)",
"memoize": "function",
"NODE_REGION_CONFIG_FILE_OPTIONS": "object(node-only)",
"NODE_REGION_CONFIG_OPTIONS": "object(node-only)",
"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS": "object(node-only)",
"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS": "object(node-only)",
"nodeDualstackConfigSelectors": "object(node-only)",
"nodeFipsConfigSelectors": "object(node-only)",
"NodeSharedConfigInit": "type(interface)",
"numberSelector": "function",
"ParsedIniData": "type(object)",
"parseKnownFiles": "function(node-only)",
"PartitionHash": "type(object)",
"Profile": "type(object)",
"ProviderError": "function",
"ProviderErrorOptionsType": "type(object)",
"readFile": "function(node-only)",
"ReadFileOptions": "type(interface)",
"REGION_ENV_NAME": "string(node-only)",
"REGION_INI_NAME": "string(node-only)",
"RegionHash": "type(object)",
"RegionInputConfig": "type(interface)",
"RegionResolvedConfig": "type(interface)",
"resolveCustomEndpointsConfig": "function",
"resolveDefaultsModeConfig": "function",
"ResolveDefaultsModeConfigOptions": "type(interface)",
"resolveEndpointsConfig": "function",
"resolveRegionConfig": "function",
"SelectorType": "object",
"SharedConfigFiles": "type(object)",
"SharedConfigInit": "type(interface)",
"SourceProfileInit": "type(interface)",
"SsoSessionInit": "type(interface)",
"SSOToken": "type(interface)",
"TokenProviderError": "function"
},
"@smithy/core/endpoints": {
"BinaryDecisionDiagram": "function",
"BuiltInParamInstruction": "type(interface)",
"ClientContextParamInstruction": "type(interface)",
"ConditionObject": "type(intersection)",
"ContextParamInstruction": "type(interface)",
"customEndpointFunctions": "object",
"decideEndpoint": "function",
"DeprecatedObject": "type(object)",
"EndpointCache": "function",
"EndpointError": "function",
"EndpointFunctions": "type(object)",
"EndpointInputConfig": "type(interface)",
"endpointMiddleware": "function",
"endpointMiddlewareOptions": "object",
"EndpointObject": "type(object)",
"EndpointObjectHeaders": "type(object)",
"EndpointObjectProperties": "type(object)",
"EndpointParameterInstructions": "type(interface)",
"EndpointParameterInstructionsSupplier": "type(object)",
"EndpointParams": "type(object)",
"EndpointRequiredInputConfig": "type(interface)",
"EndpointRequiredResolvedConfig": "type(interface)",
"EndpointResolvedConfig": "type(interface)",
"EndpointResolverOptions": "type(object)",
"EndpointRuleObject": "type(object)",
"ErrorRuleObject": "type(object)",
"EvaluateOptions": "type(intersection)",
"Expression": "type(union)",
"FunctionArgv": "type(object)",
"FunctionObject": "type(object)",
"FunctionReturn": "type(union)",
"getEndpointFromInstructions": "function",
"getEndpointPlugin": "function",
"isIpAddress": "function",
"isValidHostLabel": "function",
"middlewareEndpointToEndpointV1": "function",
"OperationContextParamInstruction": "type(interface)",
"ParameterObject": "type(object)",
"ReferenceObject": "type(object)",
"ReferenceRecord": "type(object)",
"resolveEndpoint": "function",
"resolveEndpointConfig": "function",
"resolveEndpointRequiredConfig": "function",
"resolveParams": "function",
"RuleSetObject": "type(object)",
"RuleSetRules": "type(object)",
"StaticContextParamInstruction": "type(interface)",
"toEndpointV1": "function",
"TreeRuleObject": "type(object)"
},
"@smithy/core/event-streams": {
"BinaryHeaderValue": "type(object)",
"BooleanHeaderValue": "type(object)",
"ByteHeaderValue": "type(object)",
"EventStreamCodec": "function",
"EventStreamMarshaller": "function",
"EventStreamMarshallerOptions": "type(interface)",
"EventStreamSerde": "function",
"EventStreamSerdeInputConfig": "type(interface)",
"eventStreamSerdeProvider": "function",
"EventStreamSerdeResolvedConfig": "type(interface)",
"getChunkedStream": "function",
"getMessageUnmarshaller": "function",
"getUnmarshalledStream": "function",
"HeaderMarshaller": "function",
"Int64": "function",
"IntegerHeaderValue": "type(object)",
"iterableToReadableStream": "function",
"LongHeaderValue": "type(object)",
"Message": "type(interface)",
"MessageDecoderStream": "function",
"MessageDecoderStreamOptions": "type(interface)",
"MessageEncoderStream": "function",
"MessageEncoderStreamOptions": "type(interface)",
"MessageHeaders": "type(object)",
"MessageHeaderValue": "type(union)",
"readableStreamToIterable": "function",
"resolveEventStreamSerdeConfig": "function",
"ShortHeaderValue": "type(object)",
"SmithyMessageDecoderStream": "function",
"SmithyMessageDecoderStreamOptions": "type(interface)",
"SmithyMessageEncoderStream": "function",
"SmithyMessageEncoderStreamOptions": "type(interface)",
"StringHeaderValue": "type(object)",
"TimestampHeaderValue": "type(object)",
"UniversalEventStreamMarshaller": "function",
"UniversalEventStreamMarshallerOptions": "type(interface)",
"universalEventStreamSerdeProvider": "function",
"UnmarshalledStreamOptions": "type(object)",
"UuidHeaderValue": "type(object)"
},
"@smithy/core/protocols": {
"buildQueryString": "function",
"collectBody": "function",
"contentLengthMiddleware": "function",
"contentLengthMiddlewareOptions": "object",
"determineTimestampFormat": "function",
"escapeUri": "function",
"escapeUriPath": "function",
"extendedEncodeURIComponent": "function",
"Field": "function",
"FieldOptions": "type(object)",
"FieldPosition": "type(union)",
"Fields": "function",
"FieldsOptions": "type(object)",
"FromStringShapeDeserializer": "function",
"getContentLengthPlugin": "function",
"getHttpHandlerExtensionConfiguration": "function",
"HeaderBag": "type(object)",
"HttpBindingProtocol": "function",
"HttpHandler": "type(intersection)",
"HttpHandlerExtensionConfigType": "type(object)",
"HttpHandlerExtensionConfiguration": "type(interface)",
"HttpHandlerOptions": "type(object)",
"HttpHandlerUserInput": "type(union)",
"HttpInterceptingShapeDeserializer": "function",
"HttpInterceptingShapeSerializer": "function",
"HttpMessage": "type(object)",
"HttpProtocol": "function",
"HttpRequest": "function",
"HttpResponse": "function",
"IHttpRequest": "type(interface)",
"isValidHostname": "function",
"parseQueryString": "function",
"parseUrl": "function",
"requestBuilder": "function",
"RequestBuilder": "function",
"resolvedPath": "function",
"resolveHttpHandlerRuntimeConfig": "function",
"RpcProtocol": "function",
"SerdeContext": "function",
"ToStringShapeSerializer": "function"
},
"@smithy/core/retry": {
"AdaptiveRetryStrategy": "function",
"AdaptiveRetryStrategyOptions": "type(interface)",
"CONFIG_MAX_ATTEMPTS": "string(node-only)",
"CONFIG_RETRY_MODE": "string(node-only)",
"ConfiguredRetryStrategy": "function",
"DEFAULT_MAX_ATTEMPTS": "number",
"DEFAULT_RETRY_DELAY_BASE": "number",
"DEFAULT_RETRY_MODE": "string",
"defaultDelayDecider": "function",
"DefaultRateLimiter": "function",
"DefaultRateLimiterOptions": "type(interface)",
"defaultRetryDecider": "function",
"DeprecatedAdaptiveRetryStrategy": "function",
"DeprecatedAdaptiveRetryStrategyOptions": "type(interface)",
"DeprecatedStandardRetryStrategy": "function",
"DeprecatedStandardRetryStrategyOptions": "type(interface)",
"ENV_MAX_ATTEMPTS": "string(node-only)",
"ENV_RETRY_MODE": "string(node-only)",
"getOmitRetryHeadersPlugin": "function",
"getRetryAfterHint": "function",
"getRetryPlugin": "function",
"INITIAL_RETRY_TOKENS": "number",
"INVOCATION_ID_HEADER": "string",
"isBrowserNetworkError": "function",
"isClockSkewCorrectedError": "function",
"isClockSkewError": "function",
"isNodeJsHttp2TransientError": "function",
"isRetryableByTrait": "function",
"isServerError": "function",
"isThrottlingError": "function",
"isTransientError": "function",
"MAXIMUM_RETRY_DELAY": "number",
"NO_RETRY_INCREMENT": "number",
"NODE_MAX_ATTEMPT_CONFIG_OPTIONS": "object(node-only)",
"NODE_RETRY_MODE_CONFIG_OPTIONS": "object(node-only)",
"omitRetryHeadersMiddleware": "function",
"omitRetryHeadersMiddlewareOptions": "object",
"PreviouslyResolved": "type(interface)",
"RateLimiter": "type(interface)",
"REQUEST_HEADER": "string",
"resolveRetryConfig": "function",
"Retry": "function",
"RETRY_COST": "number",
"RETRY_MODES": "object",
"RetryInputConfig": "type(interface)",
"retryMiddleware": "function",
"retryMiddlewareOptions": "object",
"RetryResolvedConfig": "type(interface)",
"StandardRetryStrategy": "function",
"StandardRetryStrategyOptions": "type(object)",
"THROTTLING_RETRY_DELAY_BASE": "number",
"TIMEOUT_RETRY_COST": "number"
},
"@smithy/core/schema": {
"deref": "function",
"deserializerMiddlewareOption": "object",
"error": "function",
"ErrorSchema": "function",
"getSchemaSerdePlugin": "function",
"isStaticSchema": "function",
"list": "function",
"ListSchema": "function",
"map": "function",
"MapSchema": "function",
"NormalizedSchema": "function",
"op": "function",
"operation": "function",
"OperationSchema": "function",
"Schema": "function",
"SCHEMA": "object",
"serializerMiddlewareOption": "object",
"sim": "function",
"simAdapter": "function",
"SimpleSchema": "function",
"simpleSchemaCacheN": "object",
"simpleSchemaCacheS": "object",
"struct": "function",
"StructureSchema": "function",
"traitsCache": "object",
"translateTraits": "function",
"TypeRegistry": "function"
},
"@smithy/core/serde": {
"_parseEpochTimestamp": "function",
"_parseRfc3339DateTimeWithOffset": "function",
"_parseRfc7231DateTime": "function",
"AutomaticJsonStringConversion": "type(alias)",
"calculateBodyLength": "function",
"ChecksumStream": "function",
"ChecksumStreamInit": "type(interface)",
"copyDocumentWithTransform": "function",
"createBufferedReadable": "function",
"createChecksumStream": "function",
"dateToUtcString": "function",
"deserializerMiddleware": "function",
"deserializerMiddlewareOption": "object",
"expectBoolean": "function",
"expectByte": "function",
"expectFloat32": "function",
"expectInt": "function",
"expectInt32": "function",
"expectLong": "function",
"expectNonNull": "function",
"expectNumber": "function",
"expectObject": "function",
"expectShort": "function",
"expectString": "function",
"expectUnion": "function",
"fromArrayBuffer": "function(node-only)",
"fromBase64": "function",
"fromHex": "function",
"fromString": "function(node-only)",
"fromUtf8": "function",
"generateIdempotencyToken": "function",
"getAwsChunkedEncodingStream": "function",
"getSerdePlugin": "function",
"handleFloat": "function",
"Hash": "function(node-only)",
"headStream": "function",
"isArrayBuffer": "function",
"isBlob": "function",
"isReadableStream": "function",
"LazyJsonString": "function",
"limitedParseDouble": "function",
"limitedParseFloat": "function",
"limitedParseFloat32": "function",
"logger": "object",
"NumericType": "type(alias)",
"NumericValue": "function",
"nv": "function",
"parseBoolean": "function",
"parseEpochTimestamp": "function",
"parseRfc3339DateTime": "function",
"parseRfc3339DateTimeWithOffset": "function",
"parseRfc7231DateTime": "function",
"quoteHeader": "function",
"sdkStreamMixin": "function",
"serializerMiddleware": "function",
"serializerMiddlewareOption": "object",
"splitEvery": "function",
"splitHeader": "function",
"splitStream": "function",
"strictParseByte": "function",
"strictParseDouble": "function",
"strictParseFloat": "function",
"strictParseFloat32": "function",
"strictParseInt": "function",
"strictParseInt32": "function",
"strictParseLong": "function",
"strictParseShort": "function",
"StringEncoding": "type(union)",
"toBase64": "function",
"toHex": "function",
"toUint8Array": "function",
"toUtf8": "function",
"Uint8ArrayBlobAdapter": "function",
"V1OrV2Endpoint": "type(object)",
"v4": "function"
},
"@smithy/credential-provider-imds": {
"DEFAULT_MAX_RETRIES": "number",
"DEFAULT_TIMEOUT": "number",
"Endpoint": "object",
"ENV_CMDS_AUTH_TOKEN": "string",
"ENV_CMDS_FULL_URI": "string",
"ENV_CMDS_RELATIVE_URI": "string",
"fromContainerMetadata": "function",
"fromInstanceMetadata": "function",
"getInstanceMetadataEndpoint": "function",
"httpRequest": "function",
"InstanceMetadataCredentials": "type(interface)",
"providerConfigFromInit": "function",
"RemoteProviderConfig": "type(interface)",
"RemoteProviderInit": "type(interface)"
},
"@smithy/eventstream-codec": {
"BinaryHeaderValue": "type(object)",
"BooleanHeaderValue": "type(object)",
"ByteHeaderValue": "type(object)",
"EventStreamCodec": "function",
"HeaderMarshaller": "function",
"Int64": "function",
"IntegerHeaderValue": "type(object)",
"LongHeaderValue": "type(object)",
"Message": "type(interface)",
"MessageDecoderStream": "function",
"MessageDecoderStreamOptions": "type(interface)",
"MessageEncoderStream": "function",
"MessageEncoderStreamOptions": "type(interface)",
"MessageHeaders": "type(object)",
"MessageHeaderValue": "type(union)",
"ShortHeaderValue": "type(object)",
"SmithyMessageDecoderStream": "function",
"SmithyMessageDecoderStreamOptions": "type(interface)",
"SmithyMessageEncoderStream": "function",
"SmithyMessageEncoderStreamOptions": "type(interface)",
"StringHeaderValue": "type(object)",
"TimestampHeaderValue": "type(object)",
"UuidHeaderValue": "type(object)"
},
"@smithy/eventstream-serde-browser": {
"EventStreamMarshaller": "function",
"EventStreamMarshallerOptions": "type(interface)",
"eventStreamSerdeProvider": "function",
"iterableToReadableStream": "function",
"readableStreamtoIterable": "function"
},
"@smithy/eventstream-serde-config-resolver": {
"EventStreamSerdeInputConfig": "type(interface)",
"EventStreamSerdeResolvedConfig": "type(interface)",
"resolveEventStreamSerdeConfig": "function"
},
"@smithy/eventstream-serde-node": {
"EventStreamMarshaller": "function",
"EventStreamMarshallerOptions": "type(interface)",
"eventStreamSerdeProvider": "function"
},
"@smithy/eventstream-serde-universal": {
"EventStreamMarshaller": "function",
"EventStreamMarshallerOptions": "type(interface)",
"eventStreamSerdeProvider": "function"
},
"@smithy/experimental-identity-and-auth": {
"ApiKeyIdentity": "type(interface)",
"ApiKeyIdentityProvider": "type(object)",
"createEndpointRuleSetHttpAuthSchemeParametersProvider": "function",
"createEndpointRuleSetHttpAuthSchemeProvider": "function",
"createIsIdentityExpiredFunction": "function",
"DefaultEndpointResolver": "type(interface)",
"DefaultIdentityProviderConfig": "function",
"doesIdentityRequireRefresh": "function",
"EndpointRuleSetHttpAuthSchemeParametersProvider": "type(interface)",
"EndpointRuleSetHttpAuthSchemeProvider": "type(interface)",
"EndpointRuleSetSmithyContext": "type(interface)",
"EXPIRATION_MS": "number",
"getHttpAuthSchemeEndpointRuleSetPlugin": "function",
"getHttpAuthSchemePlugin": "function",
"getHttpSigningPlugin": "function",
"HttpApiKeyAuthLocation": "object",
"HttpApiKeyAuthSigner": "function",
"HttpAuthOption": "type(interface)",
"HttpAuthScheme": "type(interface)",
"httpAuthSchemeEndpointRuleSetMiddlewareOptions": "object",
"HttpAuthSchemeId": "type(string)",
"httpAuthSchemeMiddleware": "function",
"httpAuthSchemeMiddlewareOptions": "object",
"HttpAuthSchemeParameters": "type(interface)",
"HttpAuthSchemeParametersProvider": "type(interface)",
"HttpAuthSchemeProvider": "type(interface)",
"HttpBearerAuthSigner": "function",
"HttpSigner": "type(interface)",
"httpSigningMiddleware": "function",
"httpSigningMiddlewareOptions": "object",
"IdentityProviderConfig": "type(interface)",
"isIdentityExpired": "function",
"MemoizedIdentityProvider": "type(interface)",
"memoizeIdentityProvider": "function",
"NoAuthSigner": "function",
"PreviouslyResolved": "type(interface)",
"SelectedHttpAuthScheme": "type(interface)",
"SigV4Signer": "function",
"TokenIdentity": "type(interface)",
"TokenIdentityProvider": "type(object)"
},
"@smithy/fetch-http-handler": {
"AdditionalRequestParameters": "type(object)",
"FetchHttpHandler": "function",
"FetchHttpHandlerOptions": "type(interface)",
"keepAliveSupport": "object",
"streamCollector": "function"
},
"@smithy/hash-blob-browser": {
"blobHasher": "function"
},
"@smithy/hash-node": {
"Hash": "function"
},
"@smithy/hash-stream-node": {
"fileStreamHasher": "function",
"readableStreamHasher": "function"
},
"@smithy/invalid-dependency": {
"invalidFunction": "function",
"invalidProvider": "function"
},
"@smithy/is-array-buffer": {
"isArrayBuffer": "function"
},
"@smithy/md5-js": {
"Md5": "function"
},
"@smithy/middleware-apply-body-checksum": {
"applyMd5BodyChecksumMiddleware": "function",
"applyMd5BodyChecksumMiddlewareOptions": "object",
"getApplyMd5BodyChecksumPlugin": "function",
"Md5BodyChecksumInputConfig": "type(interface)",
"Md5BodyChecksumResolvedConfig": "type(interface)",
"resolveMd5BodyChecksumConfig": "function"
},
"@smithy/middleware-compression": {
"CompressionInputConfig": "type(interface)",
"compressionMiddleware": "function",
"CompressionMiddlewareConfig": "type(interface)",
"compressionMiddlewareOptions": "object",
"CompressionPreviouslyResolved": "type(interface)",
"CompressionResolvedConfig": "type(interface)",
"DEFAULT_DISABLE_REQUEST_COMPRESSION": "boolean",
"DEFAULT_NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES": "number",
"getCompressionPlugin": "function",
"NODE_DISABLE_REQUEST_COMPRESSION_CONFIG_OPTIONS": "object",
"NODE_DISABLE_REQUEST_COMPRESSION_ENV_NAME": "string",
"NODE_DISABLE_REQUEST_COMPRESSION_INI_NAME": "string",
"NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES_CONFIG_OPTIONS": "object",
"NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES_ENV_NAME": "string",
"NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES_INI_NAME": "string",
"resolveCompressionConfig": "function"
},
"@smithy/middleware-content-length": {
"contentLengthMiddleware": "function",
"contentLengthMiddlewareOptions": "object",
"getContentLengthPlugin": "function"
},
"@smithy/middleware-endpoint": {
"BuiltInParamInstruction": "type(interface)",
"ClientContextParamInstruction": "type(interface)",
"ContextParamInstruction": "type(interface)",
"EndpointInputConfig": "type(interface)",
"endpointMiddleware": "function",
"endpointMiddlewareOptions": "object",
"EndpointParameterInstructions": "type(interface)",
"EndpointParameterInstructionsSupplier": "type(object)",
"EndpointRequiredInputConfig": "type(interface)",
"EndpointRequiredResolvedConfig": "type(interface)",
"EndpointResolvedConfig": "type(interface)",
"getEndpointFromInstructions": "function",
"getEndpointPlugin": "function",
"OperationContextParamInstruction": "type(interface)",
"resolveEndpointConfig": "function",
"resolveEndpointRequiredConfig": "function",
"resolveParams": "function",
"StaticContextParamInstruction": "type(interface)",
"toEndpointV1": "function"
},
"@smithy/middleware-retry": {
"AdaptiveRetryStrategy": "function",
"AdaptiveRetryStrategyOptions": "type(interface)",
"CONFIG_MAX_ATTEMPTS": "string",
"CONFIG_RETRY_MODE": "string",
"defaultDelayDecider": "function",
"defaultRetryDecider": "function",
"ENV_MAX_ATTEMPTS": "string",
"ENV_RETRY_MODE": "string",
"getOmitRetryHeadersPlugin": "function",
"getRetryAfterHint": "function",
"getRetryPlugin": "function",
"NODE_MAX_ATTEMPT_CONFIG_OPTIONS": "object",
"NODE_RETRY_MODE_CONFIG_OPTIONS": "object",
"omitRetryHeadersMiddleware": "function",
"omitRetryHeadersMiddlewareOptions": "object",
"PreviouslyResolved": "type(interface)",
"resolveRetryConfig": "function",
"RetryInputConfig": "type(interface)",
"retryMiddleware": "function",
"retryMiddlewareOptions": "object",
"RetryResolvedConfig": "type(interface)",
"StandardRetryStrategy": "function",
"StandardRetryStrategyOptions": "type(interface)"
},
"@smithy/middleware-serde": {
"deserializerMiddleware": "function",
"deserializerMiddlewareOption": "object",
"getSerdePlugin": "function",
"serializerMiddleware": "function",
"serializerMiddlewareOption": "object",
"V1OrV2Endpoint": "type(object)"
},
"@smithy/middleware-stack": {
"constructStack": "function"
},
"@smithy/node-config-provider": {
"EnvOptions": "type(interface)",
"GetterFromEnv": "type(object)",
"loadConfig": "function",
"LoadedConfigSelectors": "type(interface)",
"LocalConfigOptions": "type(intersection)",
"SharedConfigInit": "type(interface)"
},
"@smithy/node-http-handler": {
"DEFAULT_REQUEST_TIMEOUT": "number",
"NodeHttp2Handler": "function",
"NodeHttp2HandlerOptions": "type(interface)",
"NodeHttpHandler": "function",
"NodeHttpHandlerOptions": "type(interface)",
"streamCollector": "function"
},
"@smithy/property-provider": {
"chain": "function",
"CredentialsProviderError": "function",
"fromStatic": "function",
"memoize": "function",
"ProviderError": "function",
"ProviderErrorOptionsType": "type(object)",
"TokenProviderError": "function"
},
"@smithy/protocol-http": {
"Field": "function",
"FieldOptions": "type(object)",
"FieldPosition": "type(union)",
"Fields": "function",
"FieldsOptions": "type(object)",
"getHttpHandlerExtensionConfiguration": "function",
"HeaderBag": "type(object)",
"HttpHandler": "type(intersection)",
"HttpHandlerExtensionConfigType": "type(object)",
"HttpHandlerExtensionConfiguration": "type(interface)",
"HttpHandlerOptions": "type(object)",
"HttpHandlerUserInput": "type(union)",
"HttpMessage": "type(object)",
"HttpRequest": "function",
"HttpResponse": "function",
"IHttpRequest": "type(interface)",
"isValidHostname": "function",
"resolveHttpHandlerRuntimeConfig": "function"
},
"@smithy/querystring-builder": {
"buildQueryString": "function"
},
"@smithy/querystring-parser": {
"parseQueryString": "function"
},
"@smithy/service-client-documentation-generator": {
"load": "function"
},
"@smithy/service-error-classification": {
"isBrowserNetworkError": "function",
"isClockSkewCorrectedError": "function",
"isClockSkewError": "function",
"isNodeJsHttp2TransientError": "function",
"isRetryableByTrait": "function",
"isServerError": "function",
"isThrottlingError": "function",
"isTransientError": "function"
},
"@smithy/shared-ini-file-loader": {
"CONFIG_PREFIX_SEPARATOR": "string",
"DEFAULT_PROFILE": "string",
"ENV_PROFILE": "string",
"externalDataInterceptor": "object",
"getHomeDir": "function",
"getProfileName": "function",
"getSSOTokenFilepath": "function",
"getSSOTokenFromFile": "function",
"loadSharedConfigFiles": "function",
"loadSsoSessionData": "function",
"ParsedIniData": "type(object)",
"parseKnownFiles": "function",
"Profile": "type(object)",
"readFile": "function",
"ReadFileOptions": "type(interface)",
"SharedConfigFiles": "type(object)",
"SharedConfigInit": "type(interface)",
"SourceProfileInit": "type(interface)",
"SsoSessionInit": "type(interface)",
"SSOToken": "type(interface)"
},
"@smithy/signature-v4": {
"ALGORITHM_IDENTIFIER": "string",
"ALGORITHM_IDENTIFIER_V4A": "string",
"ALGORITHM_QUERY_PARAM": "string",
"ALWAYS_UNSIGNABLE_HEADERS": "object",
"AMZ_DATE_HEADER": "string",
"AMZ_DATE_QUERY_PARAM": "string",
"AUTH_HEADER": "string",
"clearCredentialCache": "function",
"createScope": "function",
"CREDENTIAL_QUERY_PARAM": "string",
"DATE_HEADER": "string",
"EVENT_ALGORITHM_IDENTIFIER": "string",
"EXPIRES_QUERY_PARAM": "string",
"GENERATED_HEADERS": "object",
"getCanonicalHeaders": "function",
"getCanonicalQuery": "function",
"getPayloadHash": "function",
"getSigningKey": "function",
"hasHeader": "function",
"HOST_HEADER": "string",
"KEY_TYPE_IDENTIFIER": "string",
"MAX_CACHE_SIZE": "number",
"MAX_PRESIGNED_TTL": "number",
"moveHeadersToQuery": "function",
"OptionalSigV4aSigner": "type(object)",
"prepareRequest": "function",
"PROXY_HEADER_PATTERN": "object",
"REGION_SET_PARAM": "string",
"SEC_HEADER_PATTERN": "object",
"SHA256_HEADER": "string",
"SIGNATURE_HEADER": "string",
"SIGNATURE_QUERY_PARAM": "string",
"SignatureV4": "function",
"signatureV4aContainer": "object",
"SignatureV4Base": "function",
"SignatureV4CryptoInit": "type(interface)",
"SignatureV4Init": "type(interface)",
"SIGNED_HEADERS_QUERY_PARAM": "string",
"TOKEN_HEADER": "string",
"TOKEN_QUERY_PARAM": "string",
"UNSIGNABLE_PATTERNS": "object",
"UNSIGNED_PAYLOAD": "string"
},
"@smithy/signature-v4a": {
"SignatureV4a": "function"
},
"@smithy/smithy-client": {
"_json": "function",
"_parseEpochTimestamp": "function",
"_parseRfc3339DateTimeWithOffset": "function",
"_parseRfc7231DateTime": "function",
"AutomaticJsonStringConversion": "type(alias)",
"Client": "function",
"collectBody": "function",
"Command": "function",
"CommandImpl": "type(interface)",
"ConditionalLazyValueInstruction": "type(object)",
"ConditionalValueInstruction": "type(object)",
"convertMap": "function",
"copyDocumentWithTransform": "function",
"createAggregatedClient": "function",
"dateToUtcString": "function",
"decorateServiceException": "function",
"DefaultExtensionRuntimeConfigType": "type(intersection)",
"DefaultsMode": "type(union)",
"DefaultsModeConfigs": "type(interface)",
"DocumentType": "type(union)",
"emitWarningIfUnsupportedVersion": "function",
"ExceptionOptionType": "type(object)",
"expectBoolean": "function",
"expectByte": "function",
"expectFloat32": "function",
"expectInt": "function",
"expectInt32": "function",
"expectLong": "function",
"expectNonNull": "function",
"expectNumber": "function",
"expectObject": "function",
"expectShort": "function",
"expectString": "function",
"expectUnion": "function",
"extendedEncodeURIComponent": "function",
"FilterStatus": "type(alias)",
"FilterStatusSupplier": "type(object)",
"generateIdempotencyToken": "function",
"getArrayIfSingleItem": "function",
"getDefaultClientConfiguration": "function",
"getDefaultExtensionConfiguration": "function",
"getValueFromTextNode": "function",
"handleFloat": "function",
"isSerializableHeaderValue": "function",
"LazyJsonString": "function",
"LazyValueInstruction": "type(object)",
"limitedParseDouble": "function",
"limitedParseFloat": "function",
"limitedParseFloat32": "function",
"loadConfigsForDefaultMode": "function",
"logger": "object",
"map": "function",
"NoOpLogger": "function",
"NumericType": "type(alias)",
"NumericValue": "function",
"nv": "function",
"ObjectMappingInstruction": "type(alias)",
"ObjectMappingInstructions": "type(object)",
"parseBoolean": "function",
"parseEpochTimestamp": "function",
"parseRfc3339DateTime": "function",
"parseRfc3339DateTimeWithOffset": "function",
"parseRfc7231DateTime": "function",
"quoteHeader": "function",
"ResolvedDefaultsMode": "type(union)",
"resolveDefaultRuntimeConfig": "function",
"resolvedPath": "function",
"SdkError": "type(intersection)",
"SENSITIVE_STRING": "string",
"serializeDateTime": "function",
"serializeFloat": "function",
"ServiceException": "function",
"ServiceExceptionOptions": "type(interface)",
"SimpleValueInstruction": "type(object)",
"SmithyConfiguration": "type(interface)",
"SmithyException": "type(interface)",
"SmithyResolvedConfiguration": "type(object)",
"SourceMappingInstruction": "type(object)",
"SourceMappingInstructions": "type(object)",
"splitEvery": "function",
"splitHeader": "function",
"strictParseByte": "function",
"strictParseDouble": "function",
"strictParseFloat": "function",
"strictParseFloat32": "function",
"strictParseInt": "function",
"strictParseInt32": "function",
"strictParseLong": "function",
"strictParseShort": "function",
"take": "function",
"throwDefaultError": "function",
"UnfilteredValue": "type(alias)",
"Value": "type(alias)",
"ValueFilteringFunction": "type(object)",
"ValueMapper": "type(object)",
"ValueSupplier": "type(object)",
"withBaseException": "function"
},
"@smithy/snapshot-testing": {
"customFields": "object",
"SnapshotProtocol": "function",
"SnapshotRunner": "function",
"snapshotTestingProtocolResponseSerializers": "object"
},
"@smithy/typecheck": {
"getRuntimeTypecheckPlugin": "function",
"RuntimeTypecheckBehavior": "type(union)",
"RuntimeTypecheckOptions": "type(object)",
"validateSchema": "function"
},
"@smithy/types": {
"$ClientProtocol": "type(interface)",
"$ClientProtocolCtor": "type(interface)",
"$Codec": "type(interface)",
"$MemberSchema": "type(object)",
"$OperationSchema": "type(interface)",
"$Schema": "type(union)",