import { _UnmarshalledVolumeInfo } from "./_VolumeInfo"; import * as __aws_sdk_types from "@aws-sdk/types"; /** *

A JSON object containing the following fields:

*/ export interface ListVolumesOutput extends __aws_sdk_types.MetadataBearer { /** *

The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region.

*/ GatewayARN?: string; /** *

Use the marker in your next request to continue pagination of iSCSI volumes. If there are no more volumes to list, this field does not appear in the response body.

*/ Marker?: string; /** *

An array of VolumeInfo objects, where each object describes an iSCSI volume. If no volumes are defined for the gateway, then VolumeInfos is an empty array "[]".

*/ VolumeInfos?: Array<_UnmarshalledVolumeInfo>; /** * 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; }