/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the response to a Suggest request.See
* Also:
AWS
* API Reference
The status of a SuggestRequest. Contains the resource ID
* (rid) and how long it took to process the request
* (timems).
The status of a SuggestRequest. Contains the resource ID
* (rid) and how long it took to process the request
* (timems).
The status of a SuggestRequest. Contains the resource ID
* (rid) and how long it took to process the request
* (timems).
The status of a SuggestRequest. Contains the resource ID
* (rid) and how long it took to process the request
* (timems).
The status of a SuggestRequest. Contains the resource ID
* (rid) and how long it took to process the request
* (timems).
Container for the matching search suggestion information.
*/ inline const SuggestModel& GetSuggest() const{ return m_suggest; } /** *Container for the matching search suggestion information.
*/ inline void SetSuggest(const SuggestModel& value) { m_suggest = value; } /** *Container for the matching search suggestion information.
*/ inline void SetSuggest(SuggestModel&& value) { m_suggest = std::move(value); } /** *Container for the matching search suggestion information.
*/ inline SuggestResult& WithSuggest(const SuggestModel& value) { SetSuggest(value); return *this;} /** *Container for the matching search suggestion information.
*/ inline SuggestResult& WithSuggest(SuggestModel&& value) { SetSuggest(std::move(value)); return *this;} private: SuggestStatus m_status; SuggestModel m_suggest; }; } // namespace Model } // namespace CloudSearchDomain } // namespace Aws