/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes additional settings for a stateful rule.See Also:
* AWS
* API Reference
The Suricata keyword.
*/ inline const Aws::String& GetKeyword() const{ return m_keyword; } /** *The Suricata keyword.
*/ inline bool KeywordHasBeenSet() const { return m_keywordHasBeenSet; } /** *The Suricata keyword.
*/ inline void SetKeyword(const Aws::String& value) { m_keywordHasBeenSet = true; m_keyword = value; } /** *The Suricata keyword.
*/ inline void SetKeyword(Aws::String&& value) { m_keywordHasBeenSet = true; m_keyword = std::move(value); } /** *The Suricata keyword.
*/ inline void SetKeyword(const char* value) { m_keywordHasBeenSet = true; m_keyword.assign(value); } /** *The Suricata keyword.
*/ inline RuleOption& WithKeyword(const Aws::String& value) { SetKeyword(value); return *this;} /** *The Suricata keyword.
*/ inline RuleOption& WithKeyword(Aws::String&& value) { SetKeyword(std::move(value)); return *this;} /** *The Suricata keyword.
*/ inline RuleOption& WithKeyword(const char* value) { SetKeyword(value); return *this;} /** *The settings for the keyword.
*/ inline const Aws::VectorThe settings for the keyword.
*/ inline bool SettingsHasBeenSet() const { return m_settingsHasBeenSet; } /** *The settings for the keyword.
*/ inline void SetSettings(const Aws::VectorThe settings for the keyword.
*/ inline void SetSettings(Aws::VectorThe settings for the keyword.
*/ inline RuleOption& WithSettings(const Aws::VectorThe settings for the keyword.
*/ inline RuleOption& WithSettings(Aws::VectorThe settings for the keyword.
*/ inline RuleOption& AddSettings(const Aws::String& value) { m_settingsHasBeenSet = true; m_settings.push_back(value); return *this; } /** *The settings for the keyword.
*/ inline RuleOption& AddSettings(Aws::String&& value) { m_settingsHasBeenSet = true; m_settings.push_back(std::move(value)); return *this; } /** *The settings for the keyword.
*/ inline RuleOption& AddSettings(const char* value) { m_settingsHasBeenSet = true; m_settings.push_back(value); return *this; } private: Aws::String m_keyword; bool m_keywordHasBeenSet = false; Aws::Vector