/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Deletes an analyzer.See Also:
AWS
* API Reference
The name of the analyzer to delete.
*/ inline const Aws::String& GetAnalyzerName() const{ return m_analyzerName; } /** *The name of the analyzer to delete.
*/ inline bool AnalyzerNameHasBeenSet() const { return m_analyzerNameHasBeenSet; } /** *The name of the analyzer to delete.
*/ inline void SetAnalyzerName(const Aws::String& value) { m_analyzerNameHasBeenSet = true; m_analyzerName = value; } /** *The name of the analyzer to delete.
*/ inline void SetAnalyzerName(Aws::String&& value) { m_analyzerNameHasBeenSet = true; m_analyzerName = std::move(value); } /** *The name of the analyzer to delete.
*/ inline void SetAnalyzerName(const char* value) { m_analyzerNameHasBeenSet = true; m_analyzerName.assign(value); } /** *The name of the analyzer to delete.
*/ inline DeleteAnalyzerRequest& WithAnalyzerName(const Aws::String& value) { SetAnalyzerName(value); return *this;} /** *The name of the analyzer to delete.
*/ inline DeleteAnalyzerRequest& WithAnalyzerName(Aws::String&& value) { SetAnalyzerName(std::move(value)); return *this;} /** *The name of the analyzer to delete.
*/ inline DeleteAnalyzerRequest& WithAnalyzerName(const char* value) { SetAnalyzerName(value); return *this;} /** *A client token.
*/ inline const Aws::String& GetClientToken() const{ return m_clientToken; } /** *A client token.
*/ inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; } /** *A client token.
*/ inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; } /** *A client token.
*/ inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); } /** *A client token.
*/ inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); } /** *A client token.
*/ inline DeleteAnalyzerRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;} /** *A client token.
*/ inline DeleteAnalyzerRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;} /** *A client token.
*/ inline DeleteAnalyzerRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;} private: Aws::String m_analyzerName; bool m_analyzerNameHasBeenSet = false; Aws::String m_clientToken; bool m_clientTokenHasBeenSet = false; }; } // namespace Model } // namespace AccessAnalyzer } // namespace Aws