import { _UnmarshalledSuggestStatus } from "./_SuggestStatus"; import { _UnmarshalledSuggestModel } from "./_SuggestModel"; import * as __aws_sdk_types from "@aws-sdk/types"; /** *

Contains the response to a Suggest request.

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

The status of a SuggestRequest. Contains the resource ID (rid) and how long it took to process the request (timems).

*/ status?: _UnmarshalledSuggestStatus; /** *

Container for the matching search suggestion information.

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