Jump to Content

New API Documentation - Developer Preview Available

We are excited to announce the developer preview of our new API documentation for AWS SDK for JavaScript v3. Please follow instructions on the landing page to leave us your feedback.

Interface EventStreamMarshallerDeserFn<StreamType>

Type Parameters

  • StreamType

Hierarchy

  • EventStreamMarshallerDeserFn
  • A function which deserializes binary event stream message into modeled shape.

    Type Parameters

    • T

    Parameters

    • body: StreamType
    • deserializer: ((input: Record<string, Message>) => Promise<T>)
        • (input: Record<string, Message>): Promise<T>
        • Parameters

          Returns Promise<T>

    Returns AsyncIterable<T>