/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace WAF { namespace Model { class GetRegexMatchSetResult { public: AWS_WAF_API GetRegexMatchSetResult(); AWS_WAF_API GetRegexMatchSetResult(const Aws::AmazonWebServiceResult& result); AWS_WAF_API 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;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetRegexMatchSetResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetRegexMatchSetResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetRegexMatchSetResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: RegexMatchSet m_regexMatchSet; Aws::String m_requestId; }; } // namespace Model } // namespace WAF } // namespace Aws