import { _UnmarshalledCluster } from "./_Cluster"; import * as __aws_sdk_types from "@aws-sdk/types"; /** * DescribeClustersOutput shape */ export interface DescribeClustersOutput extends __aws_sdk_types.MetadataBearer { /** *

A list of clusters.

*/ Clusters?: Array<_UnmarshalledCluster>; /** *

An opaque string that indicates that the response contains only a subset of clusters. Use this value in a subsequent DescribeClusters request to get more clusters.

*/ 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; }