This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-gamelift/include/aws/gamelift/model/DeleteGameServerGroupResult.h

73 lines
2.1 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 DeleteGameServerGroupResult
{
public:
DeleteGameServerGroupResult();
DeleteGameServerGroupResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DeleteGameServerGroupResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>An object that describes the deleted game server group resource, with status
* updated to DELETE_SCHEDULED. </p>
*/
inline const GameServerGroup& GetGameServerGroup() const{ return m_gameServerGroup; }
/**
* <p>An object that describes the deleted game server group resource, with status
* updated to DELETE_SCHEDULED. </p>
*/
inline void SetGameServerGroup(const GameServerGroup& value) { m_gameServerGroup = value; }
/**
* <p>An object that describes the deleted game server group resource, with status
* updated to DELETE_SCHEDULED. </p>
*/
inline void SetGameServerGroup(GameServerGroup&& value) { m_gameServerGroup = std::move(value); }
/**
* <p>An object that describes the deleted game server group resource, with status
* updated to DELETE_SCHEDULED. </p>
*/
inline DeleteGameServerGroupResult& WithGameServerGroup(const GameServerGroup& value) { SetGameServerGroup(value); return *this;}
/**
* <p>An object that describes the deleted game server group resource, with status
* updated to DELETE_SCHEDULED. </p>
*/
inline DeleteGameServerGroupResult& WithGameServerGroup(GameServerGroup&& value) { SetGameServerGroup(std::move(value)); return *this;}
private:
GameServerGroup m_gameServerGroup;
};
} // namespace Model
} // namespace GameLift
} // namespace Aws