68 lines
1.9 KiB
C++
68 lines
1.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/gamelift/GameLift_EXPORTS.h>
|
|
#include <aws/gamelift/model/GameServerGroup.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace GameLift
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_GAMELIFT_API DescribeGameServerGroupResult
|
|
{
|
|
public:
|
|
DescribeGameServerGroupResult();
|
|
DescribeGameServerGroupResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DescribeGameServerGroupResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>An object that describes the requested game server group resource. </p>
|
|
*/
|
|
inline const GameServerGroup& GetGameServerGroup() const{ return m_gameServerGroup; }
|
|
|
|
/**
|
|
* <p>An object that describes the requested game server group resource. </p>
|
|
*/
|
|
inline void SetGameServerGroup(const GameServerGroup& value) { m_gameServerGroup = value; }
|
|
|
|
/**
|
|
* <p>An object that describes the requested game server group resource. </p>
|
|
*/
|
|
inline void SetGameServerGroup(GameServerGroup&& value) { m_gameServerGroup = std::move(value); }
|
|
|
|
/**
|
|
* <p>An object that describes the requested game server group resource. </p>
|
|
*/
|
|
inline DescribeGameServerGroupResult& WithGameServerGroup(const GameServerGroup& value) { SetGameServerGroup(value); return *this;}
|
|
|
|
/**
|
|
* <p>An object that describes the requested game server group resource. </p>
|
|
*/
|
|
inline DescribeGameServerGroupResult& WithGameServerGroup(GameServerGroup&& value) { SetGameServerGroup(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
GameServerGroup m_gameServerGroup;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace GameLift
|
|
} // namespace Aws
|