This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-waf/include/aws/waf/model/GetRuleGroupResult.h

73 lines
1.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/waf/WAF_EXPORTS.h>
#include <aws/waf/model/RuleGroup.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
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<Aws::Utils::Json::JsonValue>& result);
GetRuleGroupResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>Information about the <a>RuleGroup</a> that you specified in the
* <code>GetRuleGroup</code> request. </p>
*/
inline const RuleGroup& GetRuleGroup() const{ return m_ruleGroup; }
/**
* <p>Information about the <a>RuleGroup</a> that you specified in the
* <code>GetRuleGroup</code> request. </p>
*/
inline void SetRuleGroup(const RuleGroup& value) { m_ruleGroup = value; }
/**
* <p>Information about the <a>RuleGroup</a> that you specified in the
* <code>GetRuleGroup</code> request. </p>
*/
inline void SetRuleGroup(RuleGroup&& value) { m_ruleGroup = std::move(value); }
/**
* <p>Information about the <a>RuleGroup</a> that you specified in the
* <code>GetRuleGroup</code> request. </p>
*/
inline GetRuleGroupResult& WithRuleGroup(const RuleGroup& value) { SetRuleGroup(value); return *this;}
/**
* <p>Information about the <a>RuleGroup</a> that you specified in the
* <code>GetRuleGroup</code> request. </p>
*/
inline GetRuleGroupResult& WithRuleGroup(RuleGroup&& value) { SetRuleGroup(std::move(value)); return *this;}
private:
RuleGroup m_ruleGroup;
};
} // namespace Model
} // namespace WAF
} // namespace Aws