import { StreamingBlobTypes } from "@smithy/types"; import { StartSelectorType } from "./enums"; export interface StartSelector { StartSelectorType: StartSelectorType | undefined; AfterFragmentNumber?: string | undefined; StartTimestamp?: Date | undefined; ContinuationToken?: string | undefined; } export interface GetMediaInput { StreamName?: string | undefined; StreamARN?: string | undefined; StartSelector: StartSelector | undefined; } export interface GetMediaOutput { ContentType?: string | undefined; Payload?: StreamingBlobTypes | undefined; }