/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Container for the parameters to the DeleteSuggester
* operation. Specifies the name of the domain you want to update and name of the
* suggester you want to delete.See Also:
AWS
* API Reference
Specifies the name of the suggester you want to delete.
*/ inline const Aws::String& GetSuggesterName() const{ return m_suggesterName; } /** *Specifies the name of the suggester you want to delete.
*/ inline bool SuggesterNameHasBeenSet() const { return m_suggesterNameHasBeenSet; } /** *Specifies the name of the suggester you want to delete.
*/ inline void SetSuggesterName(const Aws::String& value) { m_suggesterNameHasBeenSet = true; m_suggesterName = value; } /** *Specifies the name of the suggester you want to delete.
*/ inline void SetSuggesterName(Aws::String&& value) { m_suggesterNameHasBeenSet = true; m_suggesterName = std::move(value); } /** *Specifies the name of the suggester you want to delete.
*/ inline void SetSuggesterName(const char* value) { m_suggesterNameHasBeenSet = true; m_suggesterName.assign(value); } /** *Specifies the name of the suggester you want to delete.
*/ inline DeleteSuggesterRequest& WithSuggesterName(const Aws::String& value) { SetSuggesterName(value); return *this;} /** *Specifies the name of the suggester you want to delete.
*/ inline DeleteSuggesterRequest& WithSuggesterName(Aws::String&& value) { SetSuggesterName(std::move(value)); return *this;} /** *Specifies the name of the suggester you want to delete.
*/ inline DeleteSuggesterRequest& WithSuggesterName(const char* value) { SetSuggesterName(value); return *this;} private: Aws::String m_domainName; bool m_domainNameHasBeenSet = false; Aws::String m_suggesterName; bool m_suggesterNameHasBeenSet = false; }; } // namespace Model } // namespace CloudSearch } // namespace Aws