/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Details about a rule to exclude from a rule group.See Also:
* AWS
* API Reference
The unique identifier for the rule to exclude from the rule group.
*/ inline const Aws::String& GetRuleId() const{ return m_ruleId; } /** *The unique identifier for the rule to exclude from the rule group.
*/ inline bool RuleIdHasBeenSet() const { return m_ruleIdHasBeenSet; } /** *The unique identifier for the rule to exclude from the rule group.
*/ inline void SetRuleId(const Aws::String& value) { m_ruleIdHasBeenSet = true; m_ruleId = value; } /** *The unique identifier for the rule to exclude from the rule group.
*/ inline void SetRuleId(Aws::String&& value) { m_ruleIdHasBeenSet = true; m_ruleId = std::move(value); } /** *The unique identifier for the rule to exclude from the rule group.
*/ inline void SetRuleId(const char* value) { m_ruleIdHasBeenSet = true; m_ruleId.assign(value); } /** *The unique identifier for the rule to exclude from the rule group.
*/ inline WafExcludedRule& WithRuleId(const Aws::String& value) { SetRuleId(value); return *this;} /** *The unique identifier for the rule to exclude from the rule group.
*/ inline WafExcludedRule& WithRuleId(Aws::String&& value) { SetRuleId(std::move(value)); return *this;} /** *The unique identifier for the rule to exclude from the rule group.
*/ inline WafExcludedRule& WithRuleId(const char* value) { SetRuleId(value); return *this;} private: Aws::String m_ruleId; bool m_ruleIdHasBeenSet = false; }; } // namespace Model } // namespace SecurityHub } // namespace Aws