/** * 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 { class AWS_WAF_API GetRegexMatchSetResult { public: GetRegexMatchSetResult(); GetRegexMatchSetResult(const Aws::AmazonWebServiceResult& result); GetRegexMatchSetResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the RegexMatchSet that you specified in the * GetRegexMatchSet request. For more information, see * RegexMatchTuple.

*/ inline const RegexMatchSet& GetRegexMatchSet() const{ return m_regexMatchSet; } /** *

Information about the RegexMatchSet that you specified in the * GetRegexMatchSet request. For more information, see * RegexMatchTuple.

*/ inline void SetRegexMatchSet(const RegexMatchSet& value) { m_regexMatchSet = value; } /** *

Information about the RegexMatchSet that you specified in the * GetRegexMatchSet request. For more information, see * RegexMatchTuple.

*/ inline void SetRegexMatchSet(RegexMatchSet&& value) { m_regexMatchSet = std::move(value); } /** *

Information about the RegexMatchSet that you specified in the * GetRegexMatchSet request. For more information, see * RegexMatchTuple.

*/ inline GetRegexMatchSetResult& WithRegexMatchSet(const RegexMatchSet& value) { SetRegexMatchSet(value); return *this;} /** *

Information about the RegexMatchSet that you specified in the * GetRegexMatchSet request. For more information, see * RegexMatchTuple.

*/ inline GetRegexMatchSetResult& WithRegexMatchSet(RegexMatchSet&& value) { SetRegexMatchSet(std::move(value)); return *this;} private: RegexMatchSet m_regexMatchSet; }; } // namespace Model } // namespace WAF } // namespace Aws