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

Information about the RuleGroup that you specified in the * GetRuleGroup request.

*/ inline const RuleGroup& GetRuleGroup() const{ return m_ruleGroup; } /** *

Information about the RuleGroup that you specified in the * GetRuleGroup request.

*/ inline void SetRuleGroup(const RuleGroup& value) { m_ruleGroup = value; } /** *

Information about the RuleGroup that you specified in the * GetRuleGroup request.

*/ inline void SetRuleGroup(RuleGroup&& value) { m_ruleGroup = std::move(value); } /** *

Information about the RuleGroup that you specified in the * GetRuleGroup request.

*/ inline GetRuleGroupResult& WithRuleGroup(const RuleGroup& value) { SetRuleGroup(value); return *this;} /** *

Information about the RuleGroup that you specified in the * GetRuleGroup request.

*/ inline GetRuleGroupResult& WithRuleGroup(RuleGroup&& value) { SetRuleGroup(std::move(value)); return *this;} private: RuleGroup m_ruleGroup; }; } // namespace Model } // namespace WAF } // namespace Aws