import { _UnmarshalledFragment } from "./_Fragment"; import * as __aws_sdk_types from "@aws-sdk/types"; /** * ListFragmentsOutput shape */ export interface ListFragmentsOutput extends __aws_sdk_types.MetadataBearer { /** *

A list of archived Fragment objects from the stream that meet the selector criteria. Results are in no specific order, even across pages.

*/ Fragments?: Array<_UnmarshalledFragment>; /** *

If the returned list is truncated, the operation returns this token to use to retrieve the next page of results. This value is null when there are no more results to return.

*/ NextToken?: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }