Sha256: 11be46bfd904d25ad836ed89e86d649801ab53462a2630bc448c16f523e36ca6

Contents?: true

Size: 1.17 KB

Versions: 35

Compression:

Stored size: 1.17 KB

Contents

import {HttpResponse} from './http_response';
import {Request} from './request';
export class Response<D, E> {
		/**
		 * Whether more pages of data can be returned by further requests.
		 */
		hasNextPage(): boolean;
		/**
		 * Creates a new request for the next page of response data, calling the callback with the page data if a callback is provided.
		 */
		nextPage(callback: (err: E, data: D) => void): Request<D, E>|void;
		/**
		 * The de-serialized response data from the service.
		 * Can be null if an error occurred.
		 */
		data: D|void
		/**
		 * A structure containing information about a service or networking error.
		 */
		error: E|void
		/**
		 * Returns the unique request ID associated with the response.
		 * Log this value when debugging requests for AWS support.
		 */
		requestId: string
		/**
		 * The number of redirects that were followed before the request was completed.
		 */
		redirectCount: number
		/**
		 * The number of retries that were attempted before the request was completed.
		 */
		retryCount: number
		/**
		 * The raw HTTP response object containing the response headers and body information from the server.
		 */
		httpResponse: HttpResponse;
	}

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
sumomo-0.10.8 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.10.4 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.10.3 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.10.2 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.10.1 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.10.0 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.9.0 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.8.22 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.8.21 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.8.20 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.8.17 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.8.16 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.8.15 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.8.14 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.8.13 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.8.12 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.8.11 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.8.10 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.8.9 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts
sumomo-0.8.8 data/sumomo/api_modules/node_modules/aws-sdk/lib/response.d.ts