/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace GameLift { namespace Model { class AWS_GAMELIFT_API UpdateGameServerGroupResult { public: UpdateGameServerGroupResult(); UpdateGameServerGroupResult(const Aws::AmazonWebServiceResult& result); UpdateGameServerGroupResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

An object that describes the game server group resource with updated * properties.

*/ inline const GameServerGroup& GetGameServerGroup() const{ return m_gameServerGroup; } /** *

An object that describes the game server group resource with updated * properties.

*/ inline void SetGameServerGroup(const GameServerGroup& value) { m_gameServerGroup = value; } /** *

An object that describes the game server group resource with updated * properties.

*/ inline void SetGameServerGroup(GameServerGroup&& value) { m_gameServerGroup = std::move(value); } /** *

An object that describes the game server group resource with updated * properties.

*/ inline UpdateGameServerGroupResult& WithGameServerGroup(const GameServerGroup& value) { SetGameServerGroup(value); return *this;} /** *

An object that describes the game server group resource with updated * properties.

*/ inline UpdateGameServerGroupResult& WithGameServerGroup(GameServerGroup&& value) { SetGameServerGroup(std::move(value)); return *this;} private: GameServerGroup m_gameServerGroup; }; } // namespace Model } // namespace GameLift } // namespace Aws