/**
* 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 DeleteAnalysisScheme
* operation. Specifies the name of the domain you want to update and the analysis
* scheme you want to delete. See Also:
AWS
* API Reference
The name of the analysis scheme you want to delete.
*/ inline const Aws::String& GetAnalysisSchemeName() const{ return m_analysisSchemeName; } /** *The name of the analysis scheme you want to delete.
*/ inline bool AnalysisSchemeNameHasBeenSet() const { return m_analysisSchemeNameHasBeenSet; } /** *The name of the analysis scheme you want to delete.
*/ inline void SetAnalysisSchemeName(const Aws::String& value) { m_analysisSchemeNameHasBeenSet = true; m_analysisSchemeName = value; } /** *The name of the analysis scheme you want to delete.
*/ inline void SetAnalysisSchemeName(Aws::String&& value) { m_analysisSchemeNameHasBeenSet = true; m_analysisSchemeName = std::move(value); } /** *The name of the analysis scheme you want to delete.
*/ inline void SetAnalysisSchemeName(const char* value) { m_analysisSchemeNameHasBeenSet = true; m_analysisSchemeName.assign(value); } /** *The name of the analysis scheme you want to delete.
*/ inline DeleteAnalysisSchemeRequest& WithAnalysisSchemeName(const Aws::String& value) { SetAnalysisSchemeName(value); return *this;} /** *The name of the analysis scheme you want to delete.
*/ inline DeleteAnalysisSchemeRequest& WithAnalysisSchemeName(Aws::String&& value) { SetAnalysisSchemeName(std::move(value)); return *this;} /** *The name of the analysis scheme you want to delete.
*/ inline DeleteAnalysisSchemeRequest& WithAnalysisSchemeName(const char* value) { SetAnalysisSchemeName(value); return *this;} private: Aws::String m_domainName; bool m_domainNameHasBeenSet = false; Aws::String m_analysisSchemeName; bool m_analysisSchemeNameHasBeenSet = false; }; } // namespace Model } // namespace CloudSearch } // namespace Aws