/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a DescribeRuleGroupsNamespace
* operation.See Also:
AWS
* API Reference
The ID of the workspace to describe.
*/ inline const Aws::String& GetWorkspaceId() const{ return m_workspaceId; } /** *The ID of the workspace to describe.
*/ inline bool WorkspaceIdHasBeenSet() const { return m_workspaceIdHasBeenSet; } /** *The ID of the workspace to describe.
*/ inline void SetWorkspaceId(const Aws::String& value) { m_workspaceIdHasBeenSet = true; m_workspaceId = value; } /** *The ID of the workspace to describe.
*/ inline void SetWorkspaceId(Aws::String&& value) { m_workspaceIdHasBeenSet = true; m_workspaceId = std::move(value); } /** *The ID of the workspace to describe.
*/ inline void SetWorkspaceId(const char* value) { m_workspaceIdHasBeenSet = true; m_workspaceId.assign(value); } /** *The ID of the workspace to describe.
*/ inline DescribeRuleGroupsNamespaceRequest& WithWorkspaceId(const Aws::String& value) { SetWorkspaceId(value); return *this;} /** *The ID of the workspace to describe.
*/ inline DescribeRuleGroupsNamespaceRequest& WithWorkspaceId(Aws::String&& value) { SetWorkspaceId(std::move(value)); return *this;} /** *The ID of the workspace to describe.
*/ inline DescribeRuleGroupsNamespaceRequest& WithWorkspaceId(const char* value) { SetWorkspaceId(value); return *this;} /** *The rule groups namespace.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The rule groups namespace.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The rule groups namespace.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The rule groups namespace.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The rule groups namespace.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The rule groups namespace.
*/ inline DescribeRuleGroupsNamespaceRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The rule groups namespace.
*/ inline DescribeRuleGroupsNamespaceRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The rule groups namespace.
*/ inline DescribeRuleGroupsNamespaceRequest& WithName(const char* value) { SetName(value); return *this;} private: Aws::String m_workspaceId; bool m_workspaceIdHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; }; } // namespace Model } // namespace PrometheusService } // namespace Aws