@aws-sdk/client-bedrock-agent-runtime 3.927.0 → 3.929.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +3454 -4732
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/BedrockAgentRuntimeClient.js +2 -0
- package/dist-es/commands/CreateInvocationCommand.js +3 -9
- package/dist-es/commands/CreateSessionCommand.js +3 -9
- package/dist-es/commands/DeleteAgentMemoryCommand.js +3 -9
- package/dist-es/commands/DeleteSessionCommand.js +3 -9
- package/dist-es/commands/EndSessionCommand.js +3 -9
- package/dist-es/commands/GenerateQueryCommand.js +3 -10
- package/dist-es/commands/GetAgentMemoryCommand.js +3 -9
- package/dist-es/commands/GetExecutionFlowSnapshotCommand.js +3 -9
- package/dist-es/commands/GetFlowExecutionCommand.js +3 -9
- package/dist-es/commands/GetInvocationStepCommand.js +3 -10
- package/dist-es/commands/GetSessionCommand.js +3 -9
- package/dist-es/commands/InvokeAgentCommand.js +3 -11
- package/dist-es/commands/InvokeFlowCommand.js +3 -10
- package/dist-es/commands/InvokeInlineAgentCommand.js +3 -11
- package/dist-es/commands/ListFlowExecutionEventsCommand.js +3 -10
- package/dist-es/commands/ListFlowExecutionsCommand.js +3 -9
- package/dist-es/commands/ListInvocationStepsCommand.js +3 -9
- package/dist-es/commands/ListInvocationsCommand.js +3 -9
- package/dist-es/commands/ListSessionsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/OptimizePromptCommand.js +3 -10
- package/dist-es/commands/PutInvocationStepCommand.js +3 -10
- package/dist-es/commands/RerankCommand.js +3 -10
- package/dist-es/commands/RetrieveAndGenerateCommand.js +3 -10
- package/dist-es/commands/RetrieveAndGenerateStreamCommand.js +3 -10
- package/dist-es/commands/RetrieveCommand.js +3 -10
- package/dist-es/commands/StartFlowExecutionCommand.js +3 -10
- package/dist-es/commands/StopFlowExecutionCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateSessionCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -922
- package/dist-es/models/models_1.js +0 -262
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +3380 -0
- package/dist-types/BedrockAgentRuntimeClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -644
- package/dist-types/models/models_1.d.ts +0 -128
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +445 -0
- package/dist-types/ts3.4/BedrockAgentRuntimeClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -431
- package/dist-types/ts3.4/models/models_1.d.ts +0 -92
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +452 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_restJson1.js +0 -3122
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -281
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -380
|
@@ -6,7 +6,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
6
6
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
7
7
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
8
8
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
9
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
10
10
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
11
11
|
import { CreateInvocationCommandInput, CreateInvocationCommandOutput } from "./commands/CreateInvocationCommand";
|
|
12
12
|
import { CreateSessionCommandInput, CreateSessionCommandOutput } from "./commands/CreateSessionCommand";
|
|
@@ -173,6 +173,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
173
173
|
* Optional extensions
|
|
174
174
|
*/
|
|
175
175
|
extensions?: RuntimeExtension[];
|
|
176
|
+
/**
|
|
177
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
178
|
+
* may be overridden. A default will always be set by the client.
|
|
179
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
180
|
+
* the client.
|
|
181
|
+
* @alpha
|
|
182
|
+
*
|
|
183
|
+
*/
|
|
184
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
176
185
|
/**
|
|
177
186
|
* The function that provides necessary utilities for generating and parsing event stream
|
|
178
187
|
*/
|
|
@@ -7450,647 +7450,3 @@ export interface S3ObjectDoc {
|
|
|
7450
7450
|
*/
|
|
7451
7451
|
uri: string | undefined;
|
|
7452
7452
|
}
|
|
7453
|
-
/**
|
|
7454
|
-
* @internal
|
|
7455
|
-
*/
|
|
7456
|
-
export declare const ActionGroupInvocationInputFilterSensitiveLog: (obj: ActionGroupInvocationInput) => any;
|
|
7457
|
-
/**
|
|
7458
|
-
* @internal
|
|
7459
|
-
*/
|
|
7460
|
-
export declare const UsageFilterSensitiveLog: (obj: Usage) => any;
|
|
7461
|
-
/**
|
|
7462
|
-
* @internal
|
|
7463
|
-
*/
|
|
7464
|
-
export declare const MetadataFilterSensitiveLog: (obj: Metadata) => any;
|
|
7465
|
-
/**
|
|
7466
|
-
* @internal
|
|
7467
|
-
*/
|
|
7468
|
-
export declare const ActionGroupInvocationOutputFilterSensitiveLog: (obj: ActionGroupInvocationOutput) => any;
|
|
7469
|
-
/**
|
|
7470
|
-
* @internal
|
|
7471
|
-
*/
|
|
7472
|
-
export declare const APISchemaFilterSensitiveLog: (obj: APISchema) => any;
|
|
7473
|
-
/**
|
|
7474
|
-
* @internal
|
|
7475
|
-
*/
|
|
7476
|
-
export declare const FunctionDefinitionFilterSensitiveLog: (obj: FunctionDefinition) => any;
|
|
7477
|
-
/**
|
|
7478
|
-
* @internal
|
|
7479
|
-
*/
|
|
7480
|
-
export declare const FunctionSchemaFilterSensitiveLog: (obj: FunctionSchema) => any;
|
|
7481
|
-
/**
|
|
7482
|
-
* @internal
|
|
7483
|
-
*/
|
|
7484
|
-
export declare const AgentActionGroupFilterSensitiveLog: (obj: AgentActionGroup) => any;
|
|
7485
|
-
/**
|
|
7486
|
-
* @internal
|
|
7487
|
-
*/
|
|
7488
|
-
export declare const ApiResultFilterSensitiveLog: (obj: ApiResult) => any;
|
|
7489
|
-
/**
|
|
7490
|
-
* @internal
|
|
7491
|
-
*/
|
|
7492
|
-
export declare const InvocationResultMemberFilterSensitiveLog: (obj: InvocationResultMember) => any;
|
|
7493
|
-
/**
|
|
7494
|
-
* @internal
|
|
7495
|
-
*/
|
|
7496
|
-
export declare const ReturnControlResultsFilterSensitiveLog: (obj: ReturnControlResults) => any;
|
|
7497
|
-
/**
|
|
7498
|
-
* @internal
|
|
7499
|
-
*/
|
|
7500
|
-
export declare const AgentCollaboratorInputPayloadFilterSensitiveLog: (obj: AgentCollaboratorInputPayload) => any;
|
|
7501
|
-
/**
|
|
7502
|
-
* @internal
|
|
7503
|
-
*/
|
|
7504
|
-
export declare const AgentCollaboratorInvocationInputFilterSensitiveLog: (obj: AgentCollaboratorInvocationInput) => any;
|
|
7505
|
-
/**
|
|
7506
|
-
* @internal
|
|
7507
|
-
*/
|
|
7508
|
-
export declare const ApiInvocationInputFilterSensitiveLog: (obj: ApiInvocationInput) => any;
|
|
7509
|
-
/**
|
|
7510
|
-
* @internal
|
|
7511
|
-
*/
|
|
7512
|
-
export declare const FunctionInvocationInputFilterSensitiveLog: (obj: FunctionInvocationInput) => any;
|
|
7513
|
-
/**
|
|
7514
|
-
* @internal
|
|
7515
|
-
*/
|
|
7516
|
-
export declare const InvocationInputMemberFilterSensitiveLog: (obj: InvocationInputMember) => any;
|
|
7517
|
-
/**
|
|
7518
|
-
* @internal
|
|
7519
|
-
*/
|
|
7520
|
-
export declare const ReturnControlPayloadFilterSensitiveLog: (obj: ReturnControlPayload) => any;
|
|
7521
|
-
/**
|
|
7522
|
-
* @internal
|
|
7523
|
-
*/
|
|
7524
|
-
export declare const AgentCollaboratorOutputPayloadFilterSensitiveLog: (obj: AgentCollaboratorOutputPayload) => any;
|
|
7525
|
-
/**
|
|
7526
|
-
* @internal
|
|
7527
|
-
*/
|
|
7528
|
-
export declare const AgentCollaboratorInvocationOutputFilterSensitiveLog: (obj: AgentCollaboratorInvocationOutput) => any;
|
|
7529
|
-
/**
|
|
7530
|
-
* @internal
|
|
7531
|
-
*/
|
|
7532
|
-
export declare const CustomOrchestrationTraceEventFilterSensitiveLog: (obj: CustomOrchestrationTraceEvent) => any;
|
|
7533
|
-
/**
|
|
7534
|
-
* @internal
|
|
7535
|
-
*/
|
|
7536
|
-
export declare const CustomOrchestrationTraceFilterSensitiveLog: (obj: CustomOrchestrationTrace) => any;
|
|
7537
|
-
/**
|
|
7538
|
-
* @internal
|
|
7539
|
-
*/
|
|
7540
|
-
export declare const FailureTraceFilterSensitiveLog: (obj: FailureTrace) => any;
|
|
7541
|
-
/**
|
|
7542
|
-
* @internal
|
|
7543
|
-
*/
|
|
7544
|
-
export declare const GuardrailContentFilterFilterSensitiveLog: (obj: GuardrailContentFilter) => any;
|
|
7545
|
-
/**
|
|
7546
|
-
* @internal
|
|
7547
|
-
*/
|
|
7548
|
-
export declare const GuardrailContentPolicyAssessmentFilterSensitiveLog: (obj: GuardrailContentPolicyAssessment) => any;
|
|
7549
|
-
/**
|
|
7550
|
-
* @internal
|
|
7551
|
-
*/
|
|
7552
|
-
export declare const GuardrailPiiEntityFilterFilterSensitiveLog: (obj: GuardrailPiiEntityFilter) => any;
|
|
7553
|
-
/**
|
|
7554
|
-
* @internal
|
|
7555
|
-
*/
|
|
7556
|
-
export declare const GuardrailRegexFilterFilterSensitiveLog: (obj: GuardrailRegexFilter) => any;
|
|
7557
|
-
/**
|
|
7558
|
-
* @internal
|
|
7559
|
-
*/
|
|
7560
|
-
export declare const GuardrailSensitiveInformationPolicyAssessmentFilterSensitiveLog: (obj: GuardrailSensitiveInformationPolicyAssessment) => any;
|
|
7561
|
-
/**
|
|
7562
|
-
* @internal
|
|
7563
|
-
*/
|
|
7564
|
-
export declare const GuardrailTopicFilterSensitiveLog: (obj: GuardrailTopic) => any;
|
|
7565
|
-
/**
|
|
7566
|
-
* @internal
|
|
7567
|
-
*/
|
|
7568
|
-
export declare const GuardrailTopicPolicyAssessmentFilterSensitiveLog: (obj: GuardrailTopicPolicyAssessment) => any;
|
|
7569
|
-
/**
|
|
7570
|
-
* @internal
|
|
7571
|
-
*/
|
|
7572
|
-
export declare const GuardrailCustomWordFilterSensitiveLog: (obj: GuardrailCustomWord) => any;
|
|
7573
|
-
/**
|
|
7574
|
-
* @internal
|
|
7575
|
-
*/
|
|
7576
|
-
export declare const GuardrailManagedWordFilterSensitiveLog: (obj: GuardrailManagedWord) => any;
|
|
7577
|
-
/**
|
|
7578
|
-
* @internal
|
|
7579
|
-
*/
|
|
7580
|
-
export declare const GuardrailWordPolicyAssessmentFilterSensitiveLog: (obj: GuardrailWordPolicyAssessment) => any;
|
|
7581
|
-
/**
|
|
7582
|
-
* @internal
|
|
7583
|
-
*/
|
|
7584
|
-
export declare const GuardrailAssessmentFilterSensitiveLog: (obj: GuardrailAssessment) => any;
|
|
7585
|
-
/**
|
|
7586
|
-
* @internal
|
|
7587
|
-
*/
|
|
7588
|
-
export declare const GuardrailTraceFilterSensitiveLog: (obj: GuardrailTrace) => any;
|
|
7589
|
-
/**
|
|
7590
|
-
* @internal
|
|
7591
|
-
*/
|
|
7592
|
-
export declare const KnowledgeBaseLookupInputFilterSensitiveLog: (obj: KnowledgeBaseLookupInput) => any;
|
|
7593
|
-
/**
|
|
7594
|
-
* @internal
|
|
7595
|
-
*/
|
|
7596
|
-
export declare const InvocationInputFilterSensitiveLog: (obj: InvocationInput) => any;
|
|
7597
|
-
/**
|
|
7598
|
-
* @internal
|
|
7599
|
-
*/
|
|
7600
|
-
export declare const ModelInvocationInputFilterSensitiveLog: (obj: ModelInvocationInput) => any;
|
|
7601
|
-
/**
|
|
7602
|
-
* @internal
|
|
7603
|
-
*/
|
|
7604
|
-
export declare const RawResponseFilterSensitiveLog: (obj: RawResponse) => any;
|
|
7605
|
-
/**
|
|
7606
|
-
* @internal
|
|
7607
|
-
*/
|
|
7608
|
-
export declare const ReasoningTextBlockFilterSensitiveLog: (obj: ReasoningTextBlock) => any;
|
|
7609
|
-
/**
|
|
7610
|
-
* @internal
|
|
7611
|
-
*/
|
|
7612
|
-
export declare const ReasoningContentBlockFilterSensitiveLog: (obj: ReasoningContentBlock) => any;
|
|
7613
|
-
/**
|
|
7614
|
-
* @internal
|
|
7615
|
-
*/
|
|
7616
|
-
export declare const OrchestrationModelInvocationOutputFilterSensitiveLog: (obj: OrchestrationModelInvocationOutput) => any;
|
|
7617
|
-
/**
|
|
7618
|
-
* @internal
|
|
7619
|
-
*/
|
|
7620
|
-
export declare const CodeInterpreterInvocationOutputFilterSensitiveLog: (obj: CodeInterpreterInvocationOutput) => any;
|
|
7621
|
-
/**
|
|
7622
|
-
* @internal
|
|
7623
|
-
*/
|
|
7624
|
-
export declare const FinalResponseFilterSensitiveLog: (obj: FinalResponse) => any;
|
|
7625
|
-
/**
|
|
7626
|
-
* @internal
|
|
7627
|
-
*/
|
|
7628
|
-
export declare const RetrievalResultContentColumnFilterSensitiveLog: (obj: RetrievalResultContentColumn) => any;
|
|
7629
|
-
/**
|
|
7630
|
-
* @internal
|
|
7631
|
-
*/
|
|
7632
|
-
export declare const RetrievalResultContentFilterSensitiveLog: (obj: RetrievalResultContent) => any;
|
|
7633
|
-
/**
|
|
7634
|
-
* @internal
|
|
7635
|
-
*/
|
|
7636
|
-
export declare const RetrievalResultLocationFilterSensitiveLog: (obj: RetrievalResultLocation) => any;
|
|
7637
|
-
/**
|
|
7638
|
-
* @internal
|
|
7639
|
-
*/
|
|
7640
|
-
export declare const RetrievedReferenceFilterSensitiveLog: (obj: RetrievedReference) => any;
|
|
7641
|
-
/**
|
|
7642
|
-
* @internal
|
|
7643
|
-
*/
|
|
7644
|
-
export declare const KnowledgeBaseLookupOutputFilterSensitiveLog: (obj: KnowledgeBaseLookupOutput) => any;
|
|
7645
|
-
/**
|
|
7646
|
-
* @internal
|
|
7647
|
-
*/
|
|
7648
|
-
export declare const RepromptResponseFilterSensitiveLog: (obj: RepromptResponse) => any;
|
|
7649
|
-
/**
|
|
7650
|
-
* @internal
|
|
7651
|
-
*/
|
|
7652
|
-
export declare const ObservationFilterSensitiveLog: (obj: Observation) => any;
|
|
7653
|
-
/**
|
|
7654
|
-
* @internal
|
|
7655
|
-
*/
|
|
7656
|
-
export declare const RationaleFilterSensitiveLog: (obj: Rationale) => any;
|
|
7657
|
-
/**
|
|
7658
|
-
* @internal
|
|
7659
|
-
*/
|
|
7660
|
-
export declare const OrchestrationTraceFilterSensitiveLog: (obj: OrchestrationTrace) => any;
|
|
7661
|
-
/**
|
|
7662
|
-
* @internal
|
|
7663
|
-
*/
|
|
7664
|
-
export declare const PostProcessingParsedResponseFilterSensitiveLog: (obj: PostProcessingParsedResponse) => any;
|
|
7665
|
-
/**
|
|
7666
|
-
* @internal
|
|
7667
|
-
*/
|
|
7668
|
-
export declare const PostProcessingModelInvocationOutputFilterSensitiveLog: (obj: PostProcessingModelInvocationOutput) => any;
|
|
7669
|
-
/**
|
|
7670
|
-
* @internal
|
|
7671
|
-
*/
|
|
7672
|
-
export declare const PostProcessingTraceFilterSensitiveLog: (obj: PostProcessingTrace) => any;
|
|
7673
|
-
/**
|
|
7674
|
-
* @internal
|
|
7675
|
-
*/
|
|
7676
|
-
export declare const PreProcessingParsedResponseFilterSensitiveLog: (obj: PreProcessingParsedResponse) => any;
|
|
7677
|
-
/**
|
|
7678
|
-
* @internal
|
|
7679
|
-
*/
|
|
7680
|
-
export declare const PreProcessingModelInvocationOutputFilterSensitiveLog: (obj: PreProcessingModelInvocationOutput) => any;
|
|
7681
|
-
/**
|
|
7682
|
-
* @internal
|
|
7683
|
-
*/
|
|
7684
|
-
export declare const PreProcessingTraceFilterSensitiveLog: (obj: PreProcessingTrace) => any;
|
|
7685
|
-
/**
|
|
7686
|
-
* @internal
|
|
7687
|
-
*/
|
|
7688
|
-
export declare const RoutingClassifierModelInvocationOutputFilterSensitiveLog: (obj: RoutingClassifierModelInvocationOutput) => any;
|
|
7689
|
-
/**
|
|
7690
|
-
* @internal
|
|
7691
|
-
*/
|
|
7692
|
-
export declare const RoutingClassifierTraceFilterSensitiveLog: (obj: RoutingClassifierTrace) => any;
|
|
7693
|
-
/**
|
|
7694
|
-
* @internal
|
|
7695
|
-
*/
|
|
7696
|
-
export declare const TraceFilterSensitiveLog: (obj: Trace) => any;
|
|
7697
|
-
/**
|
|
7698
|
-
* @internal
|
|
7699
|
-
*/
|
|
7700
|
-
export declare const TracePartFilterSensitiveLog: (obj: TracePart) => any;
|
|
7701
|
-
/**
|
|
7702
|
-
* @internal
|
|
7703
|
-
*/
|
|
7704
|
-
export declare const SatisfiedConditionFilterSensitiveLog: (obj: SatisfiedCondition) => any;
|
|
7705
|
-
/**
|
|
7706
|
-
* @internal
|
|
7707
|
-
*/
|
|
7708
|
-
export declare const ConditionResultEventFilterSensitiveLog: (obj: ConditionResultEvent) => any;
|
|
7709
|
-
/**
|
|
7710
|
-
* @internal
|
|
7711
|
-
*/
|
|
7712
|
-
export declare const FlowFailureEventFilterSensitiveLog: (obj: FlowFailureEvent) => any;
|
|
7713
|
-
/**
|
|
7714
|
-
* @internal
|
|
7715
|
-
*/
|
|
7716
|
-
export declare const FlowExecutionContentFilterSensitiveLog: (obj: FlowExecutionContent) => any;
|
|
7717
|
-
/**
|
|
7718
|
-
* @internal
|
|
7719
|
-
*/
|
|
7720
|
-
export declare const FlowInputFieldFilterSensitiveLog: (obj: FlowInputField) => any;
|
|
7721
|
-
/**
|
|
7722
|
-
* @internal
|
|
7723
|
-
*/
|
|
7724
|
-
export declare const FlowExecutionInputEventFilterSensitiveLog: (obj: FlowExecutionInputEvent) => any;
|
|
7725
|
-
/**
|
|
7726
|
-
* @internal
|
|
7727
|
-
*/
|
|
7728
|
-
export declare const FlowOutputFieldFilterSensitiveLog: (obj: FlowOutputField) => any;
|
|
7729
|
-
/**
|
|
7730
|
-
* @internal
|
|
7731
|
-
*/
|
|
7732
|
-
export declare const FlowExecutionOutputEventFilterSensitiveLog: (obj: FlowExecutionOutputEvent) => any;
|
|
7733
|
-
/**
|
|
7734
|
-
* @internal
|
|
7735
|
-
*/
|
|
7736
|
-
export declare const NodeActionEventFilterSensitiveLog: (obj: NodeActionEvent) => any;
|
|
7737
|
-
/**
|
|
7738
|
-
* @internal
|
|
7739
|
-
*/
|
|
7740
|
-
export declare const NodeTraceElementsFilterSensitiveLog: (obj: NodeTraceElements) => any;
|
|
7741
|
-
/**
|
|
7742
|
-
* @internal
|
|
7743
|
-
*/
|
|
7744
|
-
export declare const NodeDependencyEventFilterSensitiveLog: (obj: NodeDependencyEvent) => any;
|
|
7745
|
-
/**
|
|
7746
|
-
* @internal
|
|
7747
|
-
*/
|
|
7748
|
-
export declare const NodeFailureEventFilterSensitiveLog: (obj: NodeFailureEvent) => any;
|
|
7749
|
-
/**
|
|
7750
|
-
* @internal
|
|
7751
|
-
*/
|
|
7752
|
-
export declare const NodeExecutionContentFilterSensitiveLog: (obj: NodeExecutionContent) => any;
|
|
7753
|
-
/**
|
|
7754
|
-
* @internal
|
|
7755
|
-
*/
|
|
7756
|
-
export declare const NodeInputSourceFilterSensitiveLog: (obj: NodeInputSource) => any;
|
|
7757
|
-
/**
|
|
7758
|
-
* @internal
|
|
7759
|
-
*/
|
|
7760
|
-
export declare const NodeInputFieldFilterSensitiveLog: (obj: NodeInputField) => any;
|
|
7761
|
-
/**
|
|
7762
|
-
* @internal
|
|
7763
|
-
*/
|
|
7764
|
-
export declare const NodeInputEventFilterSensitiveLog: (obj: NodeInputEvent) => any;
|
|
7765
|
-
/**
|
|
7766
|
-
* @internal
|
|
7767
|
-
*/
|
|
7768
|
-
export declare const NodeOutputNextFilterSensitiveLog: (obj: NodeOutputNext) => any;
|
|
7769
|
-
/**
|
|
7770
|
-
* @internal
|
|
7771
|
-
*/
|
|
7772
|
-
export declare const NodeOutputFieldFilterSensitiveLog: (obj: NodeOutputField) => any;
|
|
7773
|
-
/**
|
|
7774
|
-
* @internal
|
|
7775
|
-
*/
|
|
7776
|
-
export declare const NodeOutputEventFilterSensitiveLog: (obj: NodeOutputEvent) => any;
|
|
7777
|
-
/**
|
|
7778
|
-
* @internal
|
|
7779
|
-
*/
|
|
7780
|
-
export declare const FlowExecutionEventFilterSensitiveLog: (obj: FlowExecutionEvent) => any;
|
|
7781
|
-
/**
|
|
7782
|
-
* @internal
|
|
7783
|
-
*/
|
|
7784
|
-
export declare const ListFlowExecutionEventsResponseFilterSensitiveLog: (obj: ListFlowExecutionEventsResponse) => any;
|
|
7785
|
-
/**
|
|
7786
|
-
* @internal
|
|
7787
|
-
*/
|
|
7788
|
-
export declare const FlowInputContentFilterSensitiveLog: (obj: FlowInputContent) => any;
|
|
7789
|
-
/**
|
|
7790
|
-
* @internal
|
|
7791
|
-
*/
|
|
7792
|
-
export declare const FlowInputFilterSensitiveLog: (obj: FlowInput) => any;
|
|
7793
|
-
/**
|
|
7794
|
-
* @internal
|
|
7795
|
-
*/
|
|
7796
|
-
export declare const StartFlowExecutionRequestFilterSensitiveLog: (obj: StartFlowExecutionRequest) => any;
|
|
7797
|
-
/**
|
|
7798
|
-
* @internal
|
|
7799
|
-
*/
|
|
7800
|
-
export declare const InvokeFlowRequestFilterSensitiveLog: (obj: InvokeFlowRequest) => any;
|
|
7801
|
-
/**
|
|
7802
|
-
* @internal
|
|
7803
|
-
*/
|
|
7804
|
-
export declare const FlowCompletionEventFilterSensitiveLog: (obj: FlowCompletionEvent) => any;
|
|
7805
|
-
/**
|
|
7806
|
-
* @internal
|
|
7807
|
-
*/
|
|
7808
|
-
export declare const FlowMultiTurnInputRequestEventFilterSensitiveLog: (obj: FlowMultiTurnInputRequestEvent) => any;
|
|
7809
|
-
/**
|
|
7810
|
-
* @internal
|
|
7811
|
-
*/
|
|
7812
|
-
export declare const FlowOutputEventFilterSensitiveLog: (obj: FlowOutputEvent) => any;
|
|
7813
|
-
/**
|
|
7814
|
-
* @internal
|
|
7815
|
-
*/
|
|
7816
|
-
export declare const FlowTraceConditionFilterSensitiveLog: (obj: FlowTraceCondition) => any;
|
|
7817
|
-
/**
|
|
7818
|
-
* @internal
|
|
7819
|
-
*/
|
|
7820
|
-
export declare const FlowTraceConditionNodeResultEventFilterSensitiveLog: (obj: FlowTraceConditionNodeResultEvent) => any;
|
|
7821
|
-
/**
|
|
7822
|
-
* @internal
|
|
7823
|
-
*/
|
|
7824
|
-
export declare const FlowTraceNodeActionEventFilterSensitiveLog: (obj: FlowTraceNodeActionEvent) => any;
|
|
7825
|
-
/**
|
|
7826
|
-
* @internal
|
|
7827
|
-
*/
|
|
7828
|
-
export declare const TraceElementsFilterSensitiveLog: (obj: TraceElements) => any;
|
|
7829
|
-
/**
|
|
7830
|
-
* @internal
|
|
7831
|
-
*/
|
|
7832
|
-
export declare const FlowTraceDependencyEventFilterSensitiveLog: (obj: FlowTraceDependencyEvent) => any;
|
|
7833
|
-
/**
|
|
7834
|
-
* @internal
|
|
7835
|
-
*/
|
|
7836
|
-
export declare const FlowTraceNodeInputContentFilterSensitiveLog: (obj: FlowTraceNodeInputContent) => any;
|
|
7837
|
-
/**
|
|
7838
|
-
* @internal
|
|
7839
|
-
*/
|
|
7840
|
-
export declare const FlowTraceNodeInputExecutionChainItemFilterSensitiveLog: (obj: FlowTraceNodeInputExecutionChainItem) => any;
|
|
7841
|
-
/**
|
|
7842
|
-
* @internal
|
|
7843
|
-
*/
|
|
7844
|
-
export declare const FlowTraceNodeInputSourceFilterSensitiveLog: (obj: FlowTraceNodeInputSource) => any;
|
|
7845
|
-
/**
|
|
7846
|
-
* @internal
|
|
7847
|
-
*/
|
|
7848
|
-
export declare const FlowTraceNodeInputFieldFilterSensitiveLog: (obj: FlowTraceNodeInputField) => any;
|
|
7849
|
-
/**
|
|
7850
|
-
* @internal
|
|
7851
|
-
*/
|
|
7852
|
-
export declare const FlowTraceNodeInputEventFilterSensitiveLog: (obj: FlowTraceNodeInputEvent) => any;
|
|
7853
|
-
/**
|
|
7854
|
-
* @internal
|
|
7855
|
-
*/
|
|
7856
|
-
export declare const FlowTraceNodeOutputNextFilterSensitiveLog: (obj: FlowTraceNodeOutputNext) => any;
|
|
7857
|
-
/**
|
|
7858
|
-
* @internal
|
|
7859
|
-
*/
|
|
7860
|
-
export declare const FlowTraceNodeOutputFieldFilterSensitiveLog: (obj: FlowTraceNodeOutputField) => any;
|
|
7861
|
-
/**
|
|
7862
|
-
* @internal
|
|
7863
|
-
*/
|
|
7864
|
-
export declare const FlowTraceNodeOutputEventFilterSensitiveLog: (obj: FlowTraceNodeOutputEvent) => any;
|
|
7865
|
-
/**
|
|
7866
|
-
* @internal
|
|
7867
|
-
*/
|
|
7868
|
-
export declare const FlowTraceFilterSensitiveLog: (obj: FlowTrace) => any;
|
|
7869
|
-
/**
|
|
7870
|
-
* @internal
|
|
7871
|
-
*/
|
|
7872
|
-
export declare const FlowTraceEventFilterSensitiveLog: (obj: FlowTraceEvent) => any;
|
|
7873
|
-
/**
|
|
7874
|
-
* @internal
|
|
7875
|
-
*/
|
|
7876
|
-
export declare const FlowResponseStreamFilterSensitiveLog: (obj: FlowResponseStream) => any;
|
|
7877
|
-
/**
|
|
7878
|
-
* @internal
|
|
7879
|
-
*/
|
|
7880
|
-
export declare const InvokeFlowResponseFilterSensitiveLog: (obj: InvokeFlowResponse) => any;
|
|
7881
|
-
/**
|
|
7882
|
-
* @internal
|
|
7883
|
-
*/
|
|
7884
|
-
export declare const QueryGenerationInputFilterSensitiveLog: (obj: QueryGenerationInput) => any;
|
|
7885
|
-
/**
|
|
7886
|
-
* @internal
|
|
7887
|
-
*/
|
|
7888
|
-
export declare const GenerateQueryRequestFilterSensitiveLog: (obj: GenerateQueryRequest) => any;
|
|
7889
|
-
/**
|
|
7890
|
-
* @internal
|
|
7891
|
-
*/
|
|
7892
|
-
export declare const GeneratedQueryFilterSensitiveLog: (obj: GeneratedQuery) => any;
|
|
7893
|
-
/**
|
|
7894
|
-
* @internal
|
|
7895
|
-
*/
|
|
7896
|
-
export declare const GenerateQueryResponseFilterSensitiveLog: (obj: GenerateQueryResponse) => any;
|
|
7897
|
-
/**
|
|
7898
|
-
* @internal
|
|
7899
|
-
*/
|
|
7900
|
-
export declare const ContentBlockFilterSensitiveLog: (obj: ContentBlock) => any;
|
|
7901
|
-
/**
|
|
7902
|
-
* @internal
|
|
7903
|
-
*/
|
|
7904
|
-
export declare const MessageFilterSensitiveLog: (obj: Message) => any;
|
|
7905
|
-
/**
|
|
7906
|
-
* @internal
|
|
7907
|
-
*/
|
|
7908
|
-
export declare const ConversationHistoryFilterSensitiveLog: (obj: ConversationHistory) => any;
|
|
7909
|
-
/**
|
|
7910
|
-
* @internal
|
|
7911
|
-
*/
|
|
7912
|
-
export declare const ByteContentFileFilterSensitiveLog: (obj: ByteContentFile) => any;
|
|
7913
|
-
/**
|
|
7914
|
-
* @internal
|
|
7915
|
-
*/
|
|
7916
|
-
export declare const FileSourceFilterSensitiveLog: (obj: FileSource) => any;
|
|
7917
|
-
/**
|
|
7918
|
-
* @internal
|
|
7919
|
-
*/
|
|
7920
|
-
export declare const InputFileFilterSensitiveLog: (obj: InputFile) => any;
|
|
7921
|
-
/**
|
|
7922
|
-
* @internal
|
|
7923
|
-
*/
|
|
7924
|
-
export declare const MetadataAttributeSchemaFilterSensitiveLog: (obj: MetadataAttributeSchema) => any;
|
|
7925
|
-
/**
|
|
7926
|
-
* @internal
|
|
7927
|
-
*/
|
|
7928
|
-
export declare const ImplicitFilterConfigurationFilterSensitiveLog: (obj: ImplicitFilterConfiguration) => any;
|
|
7929
|
-
/**
|
|
7930
|
-
* @internal
|
|
7931
|
-
*/
|
|
7932
|
-
export declare const RerankingMetadataSelectiveModeConfigurationFilterSensitiveLog: (obj: RerankingMetadataSelectiveModeConfiguration) => any;
|
|
7933
|
-
/**
|
|
7934
|
-
* @internal
|
|
7935
|
-
*/
|
|
7936
|
-
export declare const MetadataConfigurationForRerankingFilterSensitiveLog: (obj: MetadataConfigurationForReranking) => any;
|
|
7937
|
-
/**
|
|
7938
|
-
* @internal
|
|
7939
|
-
*/
|
|
7940
|
-
export declare const VectorSearchBedrockRerankingConfigurationFilterSensitiveLog: (obj: VectorSearchBedrockRerankingConfiguration) => any;
|
|
7941
|
-
/**
|
|
7942
|
-
* @internal
|
|
7943
|
-
*/
|
|
7944
|
-
export declare const VectorSearchRerankingConfigurationFilterSensitiveLog: (obj: VectorSearchRerankingConfiguration) => any;
|
|
7945
|
-
/**
|
|
7946
|
-
* @internal
|
|
7947
|
-
*/
|
|
7948
|
-
export declare const TextResponsePartFilterSensitiveLog: (obj: TextResponsePart) => any;
|
|
7949
|
-
/**
|
|
7950
|
-
* @internal
|
|
7951
|
-
*/
|
|
7952
|
-
export declare const GeneratedResponsePartFilterSensitiveLog: (obj: GeneratedResponsePart) => any;
|
|
7953
|
-
/**
|
|
7954
|
-
* @internal
|
|
7955
|
-
*/
|
|
7956
|
-
export declare const CitationFilterSensitiveLog: (obj: Citation) => any;
|
|
7957
|
-
/**
|
|
7958
|
-
* @internal
|
|
7959
|
-
*/
|
|
7960
|
-
export declare const AttributionFilterSensitiveLog: (obj: Attribution) => any;
|
|
7961
|
-
/**
|
|
7962
|
-
* @internal
|
|
7963
|
-
*/
|
|
7964
|
-
export declare const PayloadPartFilterSensitiveLog: (obj: PayloadPart) => any;
|
|
7965
|
-
/**
|
|
7966
|
-
* @internal
|
|
7967
|
-
*/
|
|
7968
|
-
export declare const OutputFileFilterSensitiveLog: (obj: OutputFile) => any;
|
|
7969
|
-
/**
|
|
7970
|
-
* @internal
|
|
7971
|
-
*/
|
|
7972
|
-
export declare const FilePartFilterSensitiveLog: (obj: FilePart) => any;
|
|
7973
|
-
/**
|
|
7974
|
-
* @internal
|
|
7975
|
-
*/
|
|
7976
|
-
export declare const ResponseStreamFilterSensitiveLog: (obj: ResponseStream) => any;
|
|
7977
|
-
/**
|
|
7978
|
-
* @internal
|
|
7979
|
-
*/
|
|
7980
|
-
export declare const InvokeAgentResponseFilterSensitiveLog: (obj: InvokeAgentResponse) => any;
|
|
7981
|
-
/**
|
|
7982
|
-
* @internal
|
|
7983
|
-
*/
|
|
7984
|
-
export declare const CollaboratorConfigurationFilterSensitiveLog: (obj: CollaboratorConfiguration) => any;
|
|
7985
|
-
/**
|
|
7986
|
-
* @internal
|
|
7987
|
-
*/
|
|
7988
|
-
export declare const PromptConfigurationFilterSensitiveLog: (obj: PromptConfiguration) => any;
|
|
7989
|
-
/**
|
|
7990
|
-
* @internal
|
|
7991
|
-
*/
|
|
7992
|
-
export declare const PromptOverrideConfigurationFilterSensitiveLog: (obj: PromptOverrideConfiguration) => any;
|
|
7993
|
-
/**
|
|
7994
|
-
* @internal
|
|
7995
|
-
*/
|
|
7996
|
-
export declare const InlineSessionStateFilterSensitiveLog: (obj: InlineSessionState) => any;
|
|
7997
|
-
/**
|
|
7998
|
-
* @internal
|
|
7999
|
-
*/
|
|
8000
|
-
export declare const InlineAgentPayloadPartFilterSensitiveLog: (obj: InlineAgentPayloadPart) => any;
|
|
8001
|
-
/**
|
|
8002
|
-
* @internal
|
|
8003
|
-
*/
|
|
8004
|
-
export declare const InlineAgentFilePartFilterSensitiveLog: (obj: InlineAgentFilePart) => any;
|
|
8005
|
-
/**
|
|
8006
|
-
* @internal
|
|
8007
|
-
*/
|
|
8008
|
-
export declare const InlineAgentReturnControlPayloadFilterSensitiveLog: (obj: InlineAgentReturnControlPayload) => any;
|
|
8009
|
-
/**
|
|
8010
|
-
* @internal
|
|
8011
|
-
*/
|
|
8012
|
-
export declare const InlineAgentTracePartFilterSensitiveLog: (obj: InlineAgentTracePart) => any;
|
|
8013
|
-
/**
|
|
8014
|
-
* @internal
|
|
8015
|
-
*/
|
|
8016
|
-
export declare const InlineAgentResponseStreamFilterSensitiveLog: (obj: InlineAgentResponseStream) => any;
|
|
8017
|
-
/**
|
|
8018
|
-
* @internal
|
|
8019
|
-
*/
|
|
8020
|
-
export declare const InvokeInlineAgentResponseFilterSensitiveLog: (obj: InvokeInlineAgentResponse) => any;
|
|
8021
|
-
/**
|
|
8022
|
-
* @internal
|
|
8023
|
-
*/
|
|
8024
|
-
export declare const TextPromptFilterSensitiveLog: (obj: TextPrompt) => any;
|
|
8025
|
-
/**
|
|
8026
|
-
* @internal
|
|
8027
|
-
*/
|
|
8028
|
-
export declare const InputPromptFilterSensitiveLog: (obj: InputPrompt) => any;
|
|
8029
|
-
/**
|
|
8030
|
-
* @internal
|
|
8031
|
-
*/
|
|
8032
|
-
export declare const OptimizePromptRequestFilterSensitiveLog: (obj: OptimizePromptRequest) => any;
|
|
8033
|
-
/**
|
|
8034
|
-
* @internal
|
|
8035
|
-
*/
|
|
8036
|
-
export declare const AnalyzePromptEventFilterSensitiveLog: (obj: AnalyzePromptEvent) => any;
|
|
8037
|
-
/**
|
|
8038
|
-
* @internal
|
|
8039
|
-
*/
|
|
8040
|
-
export declare const OptimizedPromptFilterSensitiveLog: (obj: OptimizedPrompt) => any;
|
|
8041
|
-
/**
|
|
8042
|
-
* @internal
|
|
8043
|
-
*/
|
|
8044
|
-
export declare const OptimizedPromptEventFilterSensitiveLog: (obj: OptimizedPromptEvent) => any;
|
|
8045
|
-
/**
|
|
8046
|
-
* @internal
|
|
8047
|
-
*/
|
|
8048
|
-
export declare const OptimizedPromptStreamFilterSensitiveLog: (obj: OptimizedPromptStream) => any;
|
|
8049
|
-
/**
|
|
8050
|
-
* @internal
|
|
8051
|
-
*/
|
|
8052
|
-
export declare const OptimizePromptResponseFilterSensitiveLog: (obj: OptimizePromptResponse) => any;
|
|
8053
|
-
/**
|
|
8054
|
-
* @internal
|
|
8055
|
-
*/
|
|
8056
|
-
export declare const RerankTextDocumentFilterSensitiveLog: (obj: RerankTextDocument) => any;
|
|
8057
|
-
/**
|
|
8058
|
-
* @internal
|
|
8059
|
-
*/
|
|
8060
|
-
export declare const RerankQueryFilterSensitiveLog: (obj: RerankQuery) => any;
|
|
8061
|
-
/**
|
|
8062
|
-
* @internal
|
|
8063
|
-
*/
|
|
8064
|
-
export declare const RerankDocumentFilterSensitiveLog: (obj: RerankDocument) => any;
|
|
8065
|
-
/**
|
|
8066
|
-
* @internal
|
|
8067
|
-
*/
|
|
8068
|
-
export declare const RerankSourceFilterSensitiveLog: (obj: RerankSource) => any;
|
|
8069
|
-
/**
|
|
8070
|
-
* @internal
|
|
8071
|
-
*/
|
|
8072
|
-
export declare const RerankRequestFilterSensitiveLog: (obj: RerankRequest) => any;
|
|
8073
|
-
/**
|
|
8074
|
-
* @internal
|
|
8075
|
-
*/
|
|
8076
|
-
export declare const RerankResultFilterSensitiveLog: (obj: RerankResult) => any;
|
|
8077
|
-
/**
|
|
8078
|
-
* @internal
|
|
8079
|
-
*/
|
|
8080
|
-
export declare const RerankResponseFilterSensitiveLog: (obj: RerankResponse) => any;
|
|
8081
|
-
/**
|
|
8082
|
-
* @internal
|
|
8083
|
-
*/
|
|
8084
|
-
export declare const RetrieveAndGenerateInputFilterSensitiveLog: (obj: RetrieveAndGenerateInput) => any;
|
|
8085
|
-
/**
|
|
8086
|
-
* @internal
|
|
8087
|
-
*/
|
|
8088
|
-
export declare const PromptTemplateFilterSensitiveLog: (obj: PromptTemplate) => any;
|
|
8089
|
-
/**
|
|
8090
|
-
* @internal
|
|
8091
|
-
*/
|
|
8092
|
-
export declare const ExternalSourcesGenerationConfigurationFilterSensitiveLog: (obj: ExternalSourcesGenerationConfiguration) => any;
|
|
8093
|
-
/**
|
|
8094
|
-
* @internal
|
|
8095
|
-
*/
|
|
8096
|
-
export declare const ByteContentDocFilterSensitiveLog: (obj: ByteContentDoc) => any;
|