/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the rule options for a stateful rule group.See
* Also:
AWS
* API Reference
The ARN of the rule group.
*/ inline const Aws::String& GetRuleGroupArn() const{ return m_ruleGroupArn; } /** *The ARN of the rule group.
*/ inline bool RuleGroupArnHasBeenSet() const { return m_ruleGroupArnHasBeenSet; } /** *The ARN of the rule group.
*/ inline void SetRuleGroupArn(const Aws::String& value) { m_ruleGroupArnHasBeenSet = true; m_ruleGroupArn = value; } /** *The ARN of the rule group.
*/ inline void SetRuleGroupArn(Aws::String&& value) { m_ruleGroupArnHasBeenSet = true; m_ruleGroupArn = std::move(value); } /** *The ARN of the rule group.
*/ inline void SetRuleGroupArn(const char* value) { m_ruleGroupArnHasBeenSet = true; m_ruleGroupArn.assign(value); } /** *The ARN of the rule group.
*/ inline RuleGroupRuleOptionsPair& WithRuleGroupArn(const Aws::String& value) { SetRuleGroupArn(value); return *this;} /** *The ARN of the rule group.
*/ inline RuleGroupRuleOptionsPair& WithRuleGroupArn(Aws::String&& value) { SetRuleGroupArn(std::move(value)); return *this;} /** *The ARN of the rule group.
*/ inline RuleGroupRuleOptionsPair& WithRuleGroupArn(const char* value) { SetRuleGroupArn(value); return *this;} /** *The rule options.
*/ inline const Aws::VectorThe rule options.
*/ inline bool RuleOptionsHasBeenSet() const { return m_ruleOptionsHasBeenSet; } /** *The rule options.
*/ inline void SetRuleOptions(const Aws::VectorThe rule options.
*/ inline void SetRuleOptions(Aws::VectorThe rule options.
*/ inline RuleGroupRuleOptionsPair& WithRuleOptions(const Aws::VectorThe rule options.
*/ inline RuleGroupRuleOptionsPair& WithRuleOptions(Aws::VectorThe rule options.
*/ inline RuleGroupRuleOptionsPair& AddRuleOptions(const RuleOption& value) { m_ruleOptionsHasBeenSet = true; m_ruleOptions.push_back(value); return *this; } /** *The rule options.
*/ inline RuleGroupRuleOptionsPair& AddRuleOptions(RuleOption&& value) { m_ruleOptionsHasBeenSet = true; m_ruleOptions.push_back(std::move(value)); return *this; } private: Aws::String m_ruleGroupArn; bool m_ruleGroupArnHasBeenSet = false; Aws::Vector