Interface Command<ClientInput, InputType, ClientOutput, OutputType, ResolvedConfiguration>

interface Command<ClientInput, InputType, ClientOutput, OutputType, ResolvedConfiguration> {
    input: InputType;
    middlewareStack: MiddlewareStack<InputType, OutputType>;
    schema?: any;
    resolveMiddleware(stack, configuration, options): Handler<InputType, OutputType>;
}

Type Parameters

Hierarchy

Properties

input: InputType
schema?: any

This should be OperationSchema from @smithy/types, but would create problems with the client transform type adaptors.

Methods