import { _UnmarshalledOperation } from "./_Operation"; import * as __aws_sdk_types from "@aws-sdk/types"; /** * GetOperationsForResourceOutput shape */ export interface GetOperationsForResourceOutput extends __aws_sdk_types.MetadataBearer { /** *

An array of key-value pairs containing information about the results of your get operations for resource request.

*/ operations?: Array<_UnmarshalledOperation>; /** *

(Deprecated) Returns the number of pages of results that remain.

In releases prior to June 12, 2017, this parameter returned null by the API. It is now deprecated, and the API returns the next page token parameter instead.

*/ nextPageCount?: string; /** *

An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

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