Class: Aws::CloudSearchDomain::Types::SuggestResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudSearchDomain::Types::SuggestResponse
- Defined in:
- gems/aws-sdk-cloudsearchdomain/lib/aws-sdk-cloudsearchdomain/types.rb
Overview
Contains the response to a Suggest
request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ Types::SuggestStatus
The status of a
SuggestRequest
. -
#suggest ⇒ Types::SuggestModel
Container for the matching search suggestion information.
Instance Attribute Details
#status ⇒ Types::SuggestStatus
The status of a SuggestRequest
. Contains the resource ID (rid
)
and how long it took to process the request (timems
).
733 734 735 736 737 738 |
# File 'gems/aws-sdk-cloudsearchdomain/lib/aws-sdk-cloudsearchdomain/types.rb', line 733 class SuggestResponse < Struct.new( :status, :suggest) SENSITIVE = [] include Aws::Structure end |
#suggest ⇒ Types::SuggestModel
Container for the matching search suggestion information.
733 734 735 736 737 738 |
# File 'gems/aws-sdk-cloudsearchdomain/lib/aws-sdk-cloudsearchdomain/types.rb', line 733 class SuggestResponse < Struct.new( :status, :suggest) SENSITIVE = [] include Aws::Structure end |