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

Information about the RegexPatternSet that you specified in the * GetRegexPatternSet request, including the identifier of the pattern * set and the regular expression patterns you want AWS WAF to search for.

*/ inline const RegexPatternSet& GetRegexPatternSet() const{ return m_regexPatternSet; } /** *

Information about the RegexPatternSet that you specified in the * GetRegexPatternSet request, including the identifier of the pattern * set and the regular expression patterns you want AWS WAF to search for.

*/ inline void SetRegexPatternSet(const RegexPatternSet& value) { m_regexPatternSet = value; } /** *

Information about the RegexPatternSet that you specified in the * GetRegexPatternSet request, including the identifier of the pattern * set and the regular expression patterns you want AWS WAF to search for.

*/ inline void SetRegexPatternSet(RegexPatternSet&& value) { m_regexPatternSet = std::move(value); } /** *

Information about the RegexPatternSet that you specified in the * GetRegexPatternSet request, including the identifier of the pattern * set and the regular expression patterns you want AWS WAF to search for.

*/ inline GetRegexPatternSetResult& WithRegexPatternSet(const RegexPatternSet& value) { SetRegexPatternSet(value); return *this;} /** *

Information about the RegexPatternSet that you specified in the * GetRegexPatternSet request, including the identifier of the pattern * set and the regular expression patterns you want AWS WAF to search for.

*/ inline GetRegexPatternSetResult& WithRegexPatternSet(RegexPatternSet&& value) { SetRegexPatternSet(std::move(value)); return *this;} private: RegexPatternSet m_regexPatternSet; }; } // namespace Model } // namespace WAF } // namespace Aws