import { _UnmarshalledFileShareInfo } from "./_FileShareInfo"; import * as __aws_sdk_types from "@aws-sdk/types"; /** *
ListFileShareOutput
*/ export interface ListFileSharesOutput extends __aws_sdk_types.MetadataBearer { /** *If the request includes Marker, the response returns that value in this field.
If a value is present, there are more file shares to return. In a subsequent request, use NextMarker as the value for Marker to retrieve the next set of file shares.
An array of information about the file gateway's file shares.
*/ FileShareInfoList?: Array<_UnmarshalledFileShareInfo>; /** * 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; }