UNPKG

@aws-amplify/graphql-api-construct

Version:

AppSync GraphQL Api Construct using Amplify GraphQL Transformer.

31 lines (30 loc) 1.49 kB
import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; import { commonParams } from "../endpoint/EndpointParameters"; import { InvokeModelWithBidirectionalStreamRequestFilterSensitiveLog, InvokeModelWithBidirectionalStreamResponseFilterSensitiveLog, } from "../models/models_0"; import { de_InvokeModelWithBidirectionalStreamCommand, se_InvokeModelWithBidirectionalStreamCommand, } from "../protocols/Aws_restJson1"; export { $Command }; export class InvokeModelWithBidirectionalStreamCommand extends $Command .classBuilder() .ep(commonParams) .m(function (Command, cs, config, o) { return [ getSerdePlugin(config, this.serialize, this.deserialize), getEndpointPlugin(config, Command.getEndpointParameterInstructions()), getEventStreamPlugin(config), ]; }) .s("AmazonBedrockFrontendService", "InvokeModelWithBidirectionalStream", { eventStream: { input: true, output: true, }, }) .n("BedrockRuntimeClient", "InvokeModelWithBidirectionalStreamCommand") .f(InvokeModelWithBidirectionalStreamRequestFilterSensitiveLog, InvokeModelWithBidirectionalStreamResponseFilterSensitiveLog) .ser(se_InvokeModelWithBidirectionalStreamCommand) .de(de_InvokeModelWithBidirectionalStreamCommand) .build() { }