/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace WAF { namespace Model { /** *

The response to a GetSqlInjectionMatchSet request.

See * Also:

AWS * API Reference

*/ class AWS_WAF_API GetSqlInjectionMatchSetResult { public: GetSqlInjectionMatchSetResult(); GetSqlInjectionMatchSetResult(const Aws::AmazonWebServiceResult& result); GetSqlInjectionMatchSetResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the SqlInjectionMatchSet that you specified in the * GetSqlInjectionMatchSet request. For more information, see the * following topics:

*/ inline const SqlInjectionMatchSet& GetSqlInjectionMatchSet() const{ return m_sqlInjectionMatchSet; } /** *

Information about the SqlInjectionMatchSet that you specified in the * GetSqlInjectionMatchSet request. For more information, see the * following topics:

*/ inline void SetSqlInjectionMatchSet(const SqlInjectionMatchSet& value) { m_sqlInjectionMatchSet = value; } /** *

Information about the SqlInjectionMatchSet that you specified in the * GetSqlInjectionMatchSet request. For more information, see the * following topics:

*/ inline void SetSqlInjectionMatchSet(SqlInjectionMatchSet&& value) { m_sqlInjectionMatchSet = std::move(value); } /** *

Information about the SqlInjectionMatchSet that you specified in the * GetSqlInjectionMatchSet request. For more information, see the * following topics:

*/ inline GetSqlInjectionMatchSetResult& WithSqlInjectionMatchSet(const SqlInjectionMatchSet& value) { SetSqlInjectionMatchSet(value); return *this;} /** *

Information about the SqlInjectionMatchSet that you specified in the * GetSqlInjectionMatchSet request. For more information, see the * following topics:

*/ inline GetSqlInjectionMatchSetResult& WithSqlInjectionMatchSet(SqlInjectionMatchSet&& value) { SetSqlInjectionMatchSet(std::move(value)); return *this;} private: SqlInjectionMatchSet m_sqlInjectionMatchSet; }; } // namespace Model } // namespace WAF } // namespace Aws