@aws-sdk/client-bedrock-runtime 3.928.0 → 3.930.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 (34) hide show
  1. package/dist-cjs/index.js +1760 -2549
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/BedrockRuntimeClient.js +2 -0
  4. package/dist-es/commands/ApplyGuardrailCommand.js +3 -10
  5. package/dist-es/commands/ConverseCommand.js +3 -10
  6. package/dist-es/commands/ConverseStreamCommand.js +3 -10
  7. package/dist-es/commands/CountTokensCommand.js +3 -10
  8. package/dist-es/commands/GetAsyncInvokeCommand.js +3 -10
  9. package/dist-es/commands/InvokeModelCommand.js +3 -10
  10. package/dist-es/commands/InvokeModelWithBidirectionalStreamCommand.js +2 -7
  11. package/dist-es/commands/InvokeModelWithResponseStreamCommand.js +3 -10
  12. package/dist-es/commands/ListAsyncInvokesCommand.js +3 -10
  13. package/dist-es/commands/StartAsyncInvokeCommand.js +3 -10
  14. package/dist-es/models/models_0.js +0 -810
  15. package/dist-es/runtimeConfig.shared.js +2 -0
  16. package/dist-es/schemas/schemas_0.js +1720 -0
  17. package/dist-types/BedrockRuntimeClient.d.ts +10 -1
  18. package/dist-types/models/models_0.d.ts +124 -271
  19. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  20. package/dist-types/runtimeConfig.d.ts +1 -0
  21. package/dist-types/runtimeConfig.native.d.ts +1 -0
  22. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  23. package/dist-types/schemas/schemas_0.d.ts +211 -0
  24. package/dist-types/ts3.4/BedrockRuntimeClient.d.ts +4 -0
  25. package/dist-types/ts3.4/models/models_0.d.ts +0 -223
  26. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  27. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  28. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  29. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  30. package/dist-types/ts3.4/schemas/schemas_0.d.ts +218 -0
  31. package/package.json +41 -42
  32. package/dist-es/protocols/Aws_restJson1.js +0 -1589
  33. package/dist-types/protocols/Aws_restJson1.d.ts +0 -92
  34. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -128
@@ -32,10 +32,6 @@ export declare namespace AsyncInvokeOutputDataConfig {
32
32
  s3OutputDataConfig: (value: AsyncInvokeS3OutputDataConfig) => T;
33
33
  _: (name: string, value: any) => T;
34
34
  }
35
- const visit: <T>(
36
- value: AsyncInvokeOutputDataConfig,
37
- visitor: Visitor<T>
38
- ) => T;
39
35
  }
40
36
  export declare const AsyncInvokeStatus: {
41
37
  readonly COMPLETED: "Completed";
@@ -172,7 +168,6 @@ export declare namespace GuardrailImageSource {
172
168
  bytes: (value: Uint8Array) => T;
173
169
  _: (name: string, value: any) => T;
174
170
  }
175
- const visit: <T>(value: GuardrailImageSource, visitor: Visitor<T>) => T;
176
171
  }
177
172
  export interface GuardrailImageBlock {
178
173
  format: GuardrailImageFormat | undefined;
@@ -214,7 +209,6 @@ export declare namespace GuardrailContentBlock {
214
209
  image: (value: GuardrailImageBlock) => T;
215
210
  _: (name: string, value: any) => T;
216
211
  }
217
- const visit: <T>(value: GuardrailContentBlock, visitor: Visitor<T>) => T;
218
212
  }
219
213
  export declare const GuardrailOutputScope: {
220
214
  readonly FULL: "FULL";
@@ -412,10 +406,6 @@ export declare namespace GuardrailAutomatedReasoningFinding {
412
406
  ) => T;
413
407
  _: (name: string, value: any) => T;
414
408
  }
415
- const visit: <T>(
416
- value: GuardrailAutomatedReasoningFinding,
417
- visitor: Visitor<T>
418
- ) => T;
419
409
  }
420
410
  export interface GuardrailAutomatedReasoningPolicyAssessment {
421
411
  findings?: GuardrailAutomatedReasoningFinding[] | undefined;
@@ -737,7 +727,6 @@ export declare namespace CitationLocation {
737
727
  documentChunk: (value: DocumentChunkLocation) => T;
738
728
  _: (name: string, value: any) => T;
739
729
  }
740
- const visit: <T>(value: CitationLocation, visitor: Visitor<T>) => T;
741
730
  }
742
731
  export type CitationSourceContent =
743
732
  | CitationSourceContent.TextMember
@@ -755,7 +744,6 @@ export declare namespace CitationSourceContent {
755
744
  text: (value: string) => T;
756
745
  _: (name: string, value: any) => T;
757
746
  }
758
- const visit: <T>(value: CitationSourceContent, visitor: Visitor<T>) => T;
759
747
  }
760
748
  export interface Citation {
761
749
  title?: string | undefined;
@@ -778,7 +766,6 @@ export declare namespace CitationGeneratedContent {
778
766
  text: (value: string) => T;
779
767
  _: (name: string, value: any) => T;
780
768
  }
781
- const visit: <T>(value: CitationGeneratedContent, visitor: Visitor<T>) => T;
782
769
  }
783
770
  export interface CitationsContentBlock {
784
771
  content?: CitationGeneratedContent[] | undefined;
@@ -816,7 +803,6 @@ export declare namespace DocumentContentBlock {
816
803
  text: (value: string) => T;
817
804
  _: (name: string, value: any) => T;
818
805
  }
819
- const visit: <T>(value: DocumentContentBlock, visitor: Visitor<T>) => T;
820
806
  }
821
807
  export interface S3Location {
822
808
  uri: string | undefined;
@@ -871,7 +857,6 @@ export declare namespace DocumentSource {
871
857
  content: (value: DocumentContentBlock[]) => T;
872
858
  _: (name: string, value: any) => T;
873
859
  }
874
- const visit: <T>(value: DocumentSource, visitor: Visitor<T>) => T;
875
860
  }
876
861
  export interface DocumentBlock {
877
862
  format?: DocumentFormat | undefined;
@@ -902,10 +887,6 @@ export declare namespace GuardrailConverseImageSource {
902
887
  bytes: (value: Uint8Array) => T;
903
888
  _: (name: string, value: any) => T;
904
889
  }
905
- const visit: <T>(
906
- value: GuardrailConverseImageSource,
907
- visitor: Visitor<T>
908
- ) => T;
909
890
  }
910
891
  export interface GuardrailConverseImageBlock {
911
892
  format: GuardrailConverseImageFormat | undefined;
@@ -947,10 +928,6 @@ export declare namespace GuardrailConverseContentBlock {
947
928
  image: (value: GuardrailConverseImageBlock) => T;
948
929
  _: (name: string, value: any) => T;
949
930
  }
950
- const visit: <T>(
951
- value: GuardrailConverseContentBlock,
952
- visitor: Visitor<T>
953
- ) => T;
954
931
  }
955
932
  export declare const ImageFormat: {
956
933
  readonly GIF: "gif";
@@ -984,7 +961,6 @@ export declare namespace ImageSource {
984
961
  s3Location: (value: S3Location) => T;
985
962
  _: (name: string, value: any) => T;
986
963
  }
987
- const visit: <T>(value: ImageSource, visitor: Visitor<T>) => T;
988
964
  }
989
965
  export interface ImageBlock {
990
966
  format: ImageFormat | undefined;
@@ -1019,7 +995,6 @@ export declare namespace ReasoningContentBlock {
1019
995
  redactedContent: (value: Uint8Array) => T;
1020
996
  _: (name: string, value: any) => T;
1021
997
  }
1022
- const visit: <T>(value: ReasoningContentBlock, visitor: Visitor<T>) => T;
1023
998
  }
1024
999
  export declare const VideoFormat: {
1025
1000
  readonly FLV: "flv";
@@ -1058,7 +1033,6 @@ export declare namespace VideoSource {
1058
1033
  s3Location: (value: S3Location) => T;
1059
1034
  _: (name: string, value: any) => T;
1060
1035
  }
1061
- const visit: <T>(value: VideoSource, visitor: Visitor<T>) => T;
1062
1036
  }
1063
1037
  export interface VideoBlock {
1064
1038
  format: VideoFormat | undefined;
@@ -1128,7 +1102,6 @@ export declare namespace ToolResultContentBlock {
1128
1102
  video: (value: VideoBlock) => T;
1129
1103
  _: (name: string, value: any) => T;
1130
1104
  }
1131
- const visit: <T>(value: ToolResultContentBlock, visitor: Visitor<T>) => T;
1132
1105
  }
1133
1106
  export declare const ToolResultStatus: {
1134
1107
  readonly ERROR: "error";
@@ -1321,7 +1294,6 @@ export declare namespace ContentBlock {
1321
1294
  citationsContent: (value: CitationsContentBlock) => T;
1322
1295
  _: (name: string, value: any) => T;
1323
1296
  }
1324
- const visit: <T>(value: ContentBlock, visitor: Visitor<T>) => T;
1325
1297
  }
1326
1298
  export declare const ConversationRole: {
1327
1299
  readonly ASSISTANT: "assistant";
@@ -1358,7 +1330,6 @@ export declare namespace PromptVariableValues {
1358
1330
  text: (value: string) => T;
1359
1331
  _: (name: string, value: any) => T;
1360
1332
  }
1361
- const visit: <T>(value: PromptVariableValues, visitor: Visitor<T>) => T;
1362
1333
  }
1363
1334
  export type SystemContentBlock =
1364
1335
  | SystemContentBlock.CachePointMember
@@ -1396,7 +1367,6 @@ export declare namespace SystemContentBlock {
1396
1367
  cachePoint: (value: CachePointBlock) => T;
1397
1368
  _: (name: string, value: any) => T;
1398
1369
  }
1399
- const visit: <T>(value: SystemContentBlock, visitor: Visitor<T>) => T;
1400
1370
  }
1401
1371
  export interface AnyToolChoice {}
1402
1372
  export interface AutoToolChoice {}
@@ -1439,7 +1409,6 @@ export declare namespace ToolChoice {
1439
1409
  tool: (value: SpecificToolChoice) => T;
1440
1410
  _: (name: string, value: any) => T;
1441
1411
  }
1442
- const visit: <T>(value: ToolChoice, visitor: Visitor<T>) => T;
1443
1412
  }
1444
1413
  export interface SystemTool {
1445
1414
  name: string | undefined;
@@ -1460,7 +1429,6 @@ export declare namespace ToolInputSchema {
1460
1429
  json: (value: __DocumentType) => T;
1461
1430
  _: (name: string, value: any) => T;
1462
1431
  }
1463
- const visit: <T>(value: ToolInputSchema, visitor: Visitor<T>) => T;
1464
1432
  }
1465
1433
  export interface ToolSpecification {
1466
1434
  name: string | undefined;
@@ -1503,7 +1471,6 @@ export declare namespace Tool {
1503
1471
  cachePoint: (value: CachePointBlock) => T;
1504
1472
  _: (name: string, value: any) => T;
1505
1473
  }
1506
- const visit: <T>(value: Tool, visitor: Visitor<T>) => T;
1507
1474
  }
1508
1475
  export interface ToolConfiguration {
1509
1476
  tools: Tool[] | undefined;
@@ -1541,7 +1508,6 @@ export declare namespace ConverseOutput {
1541
1508
  message: (value: Message) => T;
1542
1509
  _: (name: string, value: any) => T;
1543
1510
  }
1544
- const visit: <T>(value: ConverseOutput, visitor: Visitor<T>) => T;
1545
1511
  }
1546
1512
  export declare const StopReason: {
1547
1513
  readonly CONTENT_FILTERED: "content_filtered";
@@ -1675,7 +1641,6 @@ export declare namespace ReasoningContentBlockDelta {
1675
1641
  signature: (value: string) => T;
1676
1642
  _: (name: string, value: any) => T;
1677
1643
  }
1678
- const visit: <T>(value: ReasoningContentBlockDelta, visitor: Visitor<T>) => T;
1679
1644
  }
1680
1645
  export type ToolResultBlockDelta =
1681
1646
  | ToolResultBlockDelta.TextMember
@@ -1693,7 +1658,6 @@ export declare namespace ToolResultBlockDelta {
1693
1658
  text: (value: string) => T;
1694
1659
  _: (name: string, value: any) => T;
1695
1660
  }
1696
- const visit: <T>(value: ToolResultBlockDelta, visitor: Visitor<T>) => T;
1697
1661
  }
1698
1662
  export interface ToolUseBlockDelta {
1699
1663
  input: string | undefined;
@@ -1762,7 +1726,6 @@ export declare namespace ContentBlockDelta {
1762
1726
  citation: (value: CitationsDelta) => T;
1763
1727
  _: (name: string, value: any) => T;
1764
1728
  }
1765
- const visit: <T>(value: ContentBlockDelta, visitor: Visitor<T>) => T;
1766
1729
  }
1767
1730
  export interface ContentBlockDeltaEvent {
1768
1731
  delta: ContentBlockDelta | undefined;
@@ -1803,7 +1766,6 @@ export declare namespace ContentBlockStart {
1803
1766
  toolResult: (value: ToolResultBlockStart) => T;
1804
1767
  _: (name: string, value: any) => T;
1805
1768
  }
1806
- const visit: <T>(value: ContentBlockStart, visitor: Visitor<T>) => T;
1807
1769
  }
1808
1770
  export interface ContentBlockStartEvent {
1809
1771
  start: ContentBlockStart | undefined;
@@ -2037,7 +1999,6 @@ export declare namespace ConverseStreamOutput {
2037
1999
  serviceUnavailableException: (value: ServiceUnavailableException) => T;
2038
2000
  _: (name: string, value: any) => T;
2039
2001
  }
2040
- const visit: <T>(value: ConverseStreamOutput, visitor: Visitor<T>) => T;
2041
2002
  }
2042
2003
  export interface ConverseStreamResponse {
2043
2004
  stream?: AsyncIterable<ConverseStreamOutput> | undefined;
@@ -2082,10 +2043,6 @@ export declare namespace InvokeModelWithBidirectionalStreamInput {
2082
2043
  chunk: (value: BidirectionalInputPayloadPart) => T;
2083
2044
  _: (name: string, value: any) => T;
2084
2045
  }
2085
- const visit: <T>(
2086
- value: InvokeModelWithBidirectionalStreamInput,
2087
- visitor: Visitor<T>
2088
- ) => T;
2089
2046
  }
2090
2047
  export interface InvokeModelWithBidirectionalStreamRequest {
2091
2048
  modelId: string | undefined;
@@ -2194,10 +2151,6 @@ export declare namespace InvokeModelWithBidirectionalStreamOutput {
2194
2151
  serviceUnavailableException: (value: ServiceUnavailableException) => T;
2195
2152
  _: (name: string, value: any) => T;
2196
2153
  }
2197
- const visit: <T>(
2198
- value: InvokeModelWithBidirectionalStreamOutput,
2199
- visitor: Visitor<T>
2200
- ) => T;
2201
2154
  }
2202
2155
  export interface InvokeModelWithBidirectionalStreamResponse {
2203
2156
  body: AsyncIterable<InvokeModelWithBidirectionalStreamOutput> | undefined;
@@ -2315,7 +2268,6 @@ export declare namespace ResponseStream {
2315
2268
  serviceUnavailableException: (value: ServiceUnavailableException) => T;
2316
2269
  _: (name: string, value: any) => T;
2317
2270
  }
2318
- const visit: <T>(value: ResponseStream, visitor: Visitor<T>) => T;
2319
2271
  }
2320
2272
  export interface InvokeModelWithResponseStreamResponse {
2321
2273
  body: AsyncIterable<ResponseStream> | undefined;
@@ -2354,7 +2306,6 @@ export declare namespace CountTokensInput {
2354
2306
  converse: (value: ConverseTokensRequest) => T;
2355
2307
  _: (name: string, value: any) => T;
2356
2308
  }
2357
- const visit: <T>(value: CountTokensInput, visitor: Visitor<T>) => T;
2358
2309
  }
2359
2310
  export interface CountTokensRequest {
2360
2311
  modelId: string | undefined;
@@ -2363,177 +2314,3 @@ export interface CountTokensRequest {
2363
2314
  export interface CountTokensResponse {
2364
2315
  inputTokens: number | undefined;
2365
2316
  }
2366
- export declare const GetAsyncInvokeResponseFilterSensitiveLog: (
2367
- obj: GetAsyncInvokeResponse
2368
- ) => any;
2369
- export declare const AsyncInvokeSummaryFilterSensitiveLog: (
2370
- obj: AsyncInvokeSummary
2371
- ) => any;
2372
- export declare const ListAsyncInvokesResponseFilterSensitiveLog: (
2373
- obj: ListAsyncInvokesResponse
2374
- ) => any;
2375
- export declare const StartAsyncInvokeRequestFilterSensitiveLog: (
2376
- obj: StartAsyncInvokeRequest
2377
- ) => any;
2378
- export declare const GuardrailImageSourceFilterSensitiveLog: (
2379
- obj: GuardrailImageSource
2380
- ) => any;
2381
- export declare const GuardrailImageBlockFilterSensitiveLog: (
2382
- obj: GuardrailImageBlock
2383
- ) => any;
2384
- export declare const GuardrailContentBlockFilterSensitiveLog: (
2385
- obj: GuardrailContentBlock
2386
- ) => any;
2387
- export declare const ApplyGuardrailRequestFilterSensitiveLog: (
2388
- obj: ApplyGuardrailRequest
2389
- ) => any;
2390
- export declare const GuardrailAutomatedReasoningStatementFilterSensitiveLog: (
2391
- obj: GuardrailAutomatedReasoningStatement
2392
- ) => any;
2393
- export declare const GuardrailAutomatedReasoningLogicWarningFilterSensitiveLog: (
2394
- obj: GuardrailAutomatedReasoningLogicWarning
2395
- ) => any;
2396
- export declare const GuardrailAutomatedReasoningInputTextReferenceFilterSensitiveLog: (
2397
- obj: GuardrailAutomatedReasoningInputTextReference
2398
- ) => any;
2399
- export declare const GuardrailAutomatedReasoningTranslationFilterSensitiveLog: (
2400
- obj: GuardrailAutomatedReasoningTranslation
2401
- ) => any;
2402
- export declare const GuardrailAutomatedReasoningImpossibleFindingFilterSensitiveLog: (
2403
- obj: GuardrailAutomatedReasoningImpossibleFinding
2404
- ) => any;
2405
- export declare const GuardrailAutomatedReasoningInvalidFindingFilterSensitiveLog: (
2406
- obj: GuardrailAutomatedReasoningInvalidFinding
2407
- ) => any;
2408
- export declare const GuardrailAutomatedReasoningScenarioFilterSensitiveLog: (
2409
- obj: GuardrailAutomatedReasoningScenario
2410
- ) => any;
2411
- export declare const GuardrailAutomatedReasoningSatisfiableFindingFilterSensitiveLog: (
2412
- obj: GuardrailAutomatedReasoningSatisfiableFinding
2413
- ) => any;
2414
- export declare const GuardrailAutomatedReasoningTranslationOptionFilterSensitiveLog: (
2415
- obj: GuardrailAutomatedReasoningTranslationOption
2416
- ) => any;
2417
- export declare const GuardrailAutomatedReasoningTranslationAmbiguousFindingFilterSensitiveLog: (
2418
- obj: GuardrailAutomatedReasoningTranslationAmbiguousFinding
2419
- ) => any;
2420
- export declare const GuardrailAutomatedReasoningValidFindingFilterSensitiveLog: (
2421
- obj: GuardrailAutomatedReasoningValidFinding
2422
- ) => any;
2423
- export declare const GuardrailAutomatedReasoningFindingFilterSensitiveLog: (
2424
- obj: GuardrailAutomatedReasoningFinding
2425
- ) => any;
2426
- export declare const GuardrailAutomatedReasoningPolicyAssessmentFilterSensitiveLog: (
2427
- obj: GuardrailAutomatedReasoningPolicyAssessment
2428
- ) => any;
2429
- export declare const GuardrailAssessmentFilterSensitiveLog: (
2430
- obj: GuardrailAssessment
2431
- ) => any;
2432
- export declare const ApplyGuardrailResponseFilterSensitiveLog: (
2433
- obj: ApplyGuardrailResponse
2434
- ) => any;
2435
- export declare const GuardrailConverseImageSourceFilterSensitiveLog: (
2436
- obj: GuardrailConverseImageSource
2437
- ) => any;
2438
- export declare const GuardrailConverseImageBlockFilterSensitiveLog: (
2439
- obj: GuardrailConverseImageBlock
2440
- ) => any;
2441
- export declare const GuardrailConverseContentBlockFilterSensitiveLog: (
2442
- obj: GuardrailConverseContentBlock
2443
- ) => any;
2444
- export declare const ReasoningTextBlockFilterSensitiveLog: (
2445
- obj: ReasoningTextBlock
2446
- ) => any;
2447
- export declare const ReasoningContentBlockFilterSensitiveLog: (
2448
- obj: ReasoningContentBlock
2449
- ) => any;
2450
- export declare const ContentBlockFilterSensitiveLog: (obj: ContentBlock) => any;
2451
- export declare const MessageFilterSensitiveLog: (obj: Message) => any;
2452
- export declare const SystemContentBlockFilterSensitiveLog: (
2453
- obj: SystemContentBlock
2454
- ) => any;
2455
- export declare const ConverseRequestFilterSensitiveLog: (
2456
- obj: ConverseRequest
2457
- ) => any;
2458
- export declare const ConverseOutputFilterSensitiveLog: (
2459
- obj: ConverseOutput
2460
- ) => any;
2461
- export declare const GuardrailTraceAssessmentFilterSensitiveLog: (
2462
- obj: GuardrailTraceAssessment
2463
- ) => any;
2464
- export declare const ConverseTraceFilterSensitiveLog: (
2465
- obj: ConverseTrace
2466
- ) => any;
2467
- export declare const ConverseResponseFilterSensitiveLog: (
2468
- obj: ConverseResponse
2469
- ) => any;
2470
- export declare const ConverseStreamRequestFilterSensitiveLog: (
2471
- obj: ConverseStreamRequest
2472
- ) => any;
2473
- export declare const ReasoningContentBlockDeltaFilterSensitiveLog: (
2474
- obj: ReasoningContentBlockDelta
2475
- ) => any;
2476
- export declare const ContentBlockDeltaFilterSensitiveLog: (
2477
- obj: ContentBlockDelta
2478
- ) => any;
2479
- export declare const ContentBlockDeltaEventFilterSensitiveLog: (
2480
- obj: ContentBlockDeltaEvent
2481
- ) => any;
2482
- export declare const ConverseStreamTraceFilterSensitiveLog: (
2483
- obj: ConverseStreamTrace
2484
- ) => any;
2485
- export declare const ConverseStreamMetadataEventFilterSensitiveLog: (
2486
- obj: ConverseStreamMetadataEvent
2487
- ) => any;
2488
- export declare const ConverseStreamOutputFilterSensitiveLog: (
2489
- obj: ConverseStreamOutput
2490
- ) => any;
2491
- export declare const ConverseStreamResponseFilterSensitiveLog: (
2492
- obj: ConverseStreamResponse
2493
- ) => any;
2494
- export declare const InvokeModelRequestFilterSensitiveLog: (
2495
- obj: InvokeModelRequest
2496
- ) => any;
2497
- export declare const InvokeModelResponseFilterSensitiveLog: (
2498
- obj: InvokeModelResponse
2499
- ) => any;
2500
- export declare const BidirectionalInputPayloadPartFilterSensitiveLog: (
2501
- obj: BidirectionalInputPayloadPart
2502
- ) => any;
2503
- export declare const InvokeModelWithBidirectionalStreamInputFilterSensitiveLog: (
2504
- obj: InvokeModelWithBidirectionalStreamInput
2505
- ) => any;
2506
- export declare const InvokeModelWithBidirectionalStreamRequestFilterSensitiveLog: (
2507
- obj: InvokeModelWithBidirectionalStreamRequest
2508
- ) => any;
2509
- export declare const BidirectionalOutputPayloadPartFilterSensitiveLog: (
2510
- obj: BidirectionalOutputPayloadPart
2511
- ) => any;
2512
- export declare const InvokeModelWithBidirectionalStreamOutputFilterSensitiveLog: (
2513
- obj: InvokeModelWithBidirectionalStreamOutput
2514
- ) => any;
2515
- export declare const InvokeModelWithBidirectionalStreamResponseFilterSensitiveLog: (
2516
- obj: InvokeModelWithBidirectionalStreamResponse
2517
- ) => any;
2518
- export declare const InvokeModelWithResponseStreamRequestFilterSensitiveLog: (
2519
- obj: InvokeModelWithResponseStreamRequest
2520
- ) => any;
2521
- export declare const PayloadPartFilterSensitiveLog: (obj: PayloadPart) => any;
2522
- export declare const ResponseStreamFilterSensitiveLog: (
2523
- obj: ResponseStream
2524
- ) => any;
2525
- export declare const InvokeModelWithResponseStreamResponseFilterSensitiveLog: (
2526
- obj: InvokeModelWithResponseStreamResponse
2527
- ) => any;
2528
- export declare const ConverseTokensRequestFilterSensitiveLog: (
2529
- obj: ConverseTokensRequest
2530
- ) => any;
2531
- export declare const InvokeModelTokensRequestFilterSensitiveLog: (
2532
- obj: InvokeModelTokensRequest
2533
- ) => any;
2534
- export declare const CountTokensInputFilterSensitiveLog: (
2535
- obj: CountTokensInput
2536
- ) => any;
2537
- export declare const CountTokensRequestFilterSensitiveLog: (
2538
- obj: CountTokensRequest
2539
- ) => any;
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: BedrockRuntimeClientConfig) => {
38
38
  profile?: string;
39
39
  logger: import("@smithy/types").Logger;
40
40
  extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ protocol: import("@smithy/types").ClientProtocol<
42
+ import("@smithy/types").HttpRequest,
43
+ import("@smithy/types").HttpResponse
44
+ >;
41
45
  customUserAgent?: string | import("@smithy/types").UserAgent;
42
46
  userAgentAppId?:
43
47
  | string
@@ -67,6 +67,10 @@ export declare const getRuntimeConfig: (config: BedrockRuntimeClientConfig) => {
67
67
  profile?: string;
68
68
  logger: import("@smithy/types").Logger;
69
69
  extensions: import("./runtimeExtensions").RuntimeExtension[];
70
+ protocol: import("@smithy/types").ClientProtocol<
71
+ import("@smithy/types").HttpRequest,
72
+ import("@smithy/types").HttpResponse
73
+ >;
70
74
  customUserAgent?: string | import("@smithy/types").UserAgent;
71
75
  retryStrategy?:
72
76
  | import("@smithy/types").RetryStrategy
@@ -50,6 +50,10 @@ export declare const getRuntimeConfig: (config: BedrockRuntimeClientConfig) => {
50
50
  retryMode: string | import("@smithy/types").Provider<string>;
51
51
  logger: import("@smithy/types").Logger;
52
52
  extensions: import("./runtimeExtensions").RuntimeExtension[];
53
+ protocol: import("@smithy/types").ClientProtocol<
54
+ import("@smithy/types").HttpRequest,
55
+ import("@smithy/types").HttpResponse
56
+ >;
53
57
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
54
58
  defaultsMode:
55
59
  | import("@smithy/smithy-client").DefaultsMode
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (config: BedrockRuntimeClientConfig) => {
40
40
  }
41
41
  )[];
42
42
  logger: import("@smithy/types").Logger;
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  serviceId: string;
44
48
  urlParser: import("@smithy/types").UrlParser;
45
49
  utf8Decoder: import("@smithy/types").Decoder;