/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the output of a PutRuleGroupsNamespace operation.See
* Also:
AWS
* API Reference
The rule groups namespace name.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The rule groups namespace name.
*/ inline void SetName(const Aws::String& value) { m_name = value; } /** *The rule groups namespace name.
*/ inline void SetName(Aws::String&& value) { m_name = std::move(value); } /** *The rule groups namespace name.
*/ inline void SetName(const char* value) { m_name.assign(value); } /** *The rule groups namespace name.
*/ inline PutRuleGroupsNamespaceResult& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The rule groups namespace name.
*/ inline PutRuleGroupsNamespaceResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The rule groups namespace name.
*/ inline PutRuleGroupsNamespaceResult& WithName(const char* value) { SetName(value); return *this;} /** *The Amazon Resource Name (ARN) of this rule groups namespace.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The Amazon Resource Name (ARN) of this rule groups namespace.
*/ inline void SetArn(const Aws::String& value) { m_arn = value; } /** *The Amazon Resource Name (ARN) of this rule groups namespace.
*/ inline void SetArn(Aws::String&& value) { m_arn = std::move(value); } /** *The Amazon Resource Name (ARN) of this rule groups namespace.
*/ inline void SetArn(const char* value) { m_arn.assign(value); } /** *The Amazon Resource Name (ARN) of this rule groups namespace.
*/ inline PutRuleGroupsNamespaceResult& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of this rule groups namespace.
*/ inline PutRuleGroupsNamespaceResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of this rule groups namespace.
*/ inline PutRuleGroupsNamespaceResult& WithArn(const char* value) { SetArn(value); return *this;} /** *The status of rule groups namespace.
*/ inline const RuleGroupsNamespaceStatus& GetStatus() const{ return m_status; } /** *The status of rule groups namespace.
*/ inline void SetStatus(const RuleGroupsNamespaceStatus& value) { m_status = value; } /** *The status of rule groups namespace.
*/ inline void SetStatus(RuleGroupsNamespaceStatus&& value) { m_status = std::move(value); } /** *The status of rule groups namespace.
*/ inline PutRuleGroupsNamespaceResult& WithStatus(const RuleGroupsNamespaceStatus& value) { SetStatus(value); return *this;} /** *The status of rule groups namespace.
*/ inline PutRuleGroupsNamespaceResult& WithStatus(RuleGroupsNamespaceStatus&& value) { SetStatus(std::move(value)); return *this;} /** *The tags of this rule groups namespace.
*/ inline const Aws::MapThe tags of this rule groups namespace.
*/ inline void SetTags(const Aws::MapThe tags of this rule groups namespace.
*/ inline void SetTags(Aws::MapThe tags of this rule groups namespace.
*/ inline PutRuleGroupsNamespaceResult& WithTags(const Aws::MapThe tags of this rule groups namespace.
*/ inline PutRuleGroupsNamespaceResult& WithTags(Aws::MapThe tags of this rule groups namespace.
*/ inline PutRuleGroupsNamespaceResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; } /** *The tags of this rule groups namespace.
*/ inline PutRuleGroupsNamespaceResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; } /** *The tags of this rule groups namespace.
*/ inline PutRuleGroupsNamespaceResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; } /** *The tags of this rule groups namespace.
*/ inline PutRuleGroupsNamespaceResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *The tags of this rule groups namespace.
*/ inline PutRuleGroupsNamespaceResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; } /** *The tags of this rule groups namespace.
*/ inline PutRuleGroupsNamespaceResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; } /** *The tags of this rule groups namespace.
*/ inline PutRuleGroupsNamespaceResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, value); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline PutRuleGroupsNamespaceResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline PutRuleGroupsNamespaceResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline PutRuleGroupsNamespaceResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_name; Aws::String m_arn; RuleGroupsNamespaceStatus m_status; Aws::Map