/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The response object for this operation.See Also:
AWS
* API Reference
The name of the group.
*/ inline const Group& GetGroup() const{ return m_group; } /** *The name of the group.
*/ inline void SetGroup(const Group& value) { m_group = value; } /** *The name of the group.
*/ inline void SetGroup(Group&& value) { m_group = std::move(value); } /** *The name of the group.
*/ inline CreateGroupResult& WithGroup(const Group& value) { SetGroup(value); return *this;} /** *The name of the group.
*/ inline CreateGroupResult& WithGroup(Group&& value) { SetGroup(std::move(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 CreateGroupResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateGroupResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateGroupResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} /** *The HTTP status of the request.
*/ inline int GetStatus() const{ return m_status; } /** *The HTTP status of the request.
*/ inline void SetStatus(int value) { m_status = value; } /** *The HTTP status of the request.
*/ inline CreateGroupResult& WithStatus(int value) { SetStatus(value); return *this;} private: Group m_group; Aws::String m_requestId; int m_status; }; } // namespace Model } // namespace QuickSight } // namespace Aws