/** * 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 { /** *

Represents the returned data in response to a request action.

See * Also:

AWS * API Reference

*/ class AWS_GAMELIFT_API UpdateMatchmakingConfigurationResult { public: UpdateMatchmakingConfigurationResult(); UpdateMatchmakingConfigurationResult(const Aws::AmazonWebServiceResult& result); UpdateMatchmakingConfigurationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The updated matchmaking configuration.

*/ inline const MatchmakingConfiguration& GetConfiguration() const{ return m_configuration; } /** *

The updated matchmaking configuration.

*/ inline void SetConfiguration(const MatchmakingConfiguration& value) { m_configuration = value; } /** *

The updated matchmaking configuration.

*/ inline void SetConfiguration(MatchmakingConfiguration&& value) { m_configuration = std::move(value); } /** *

The updated matchmaking configuration.

*/ inline UpdateMatchmakingConfigurationResult& WithConfiguration(const MatchmakingConfiguration& value) { SetConfiguration(value); return *this;} /** *

The updated matchmaking configuration.

*/ inline UpdateMatchmakingConfigurationResult& WithConfiguration(MatchmakingConfiguration&& value) { SetConfiguration(std::move(value)); return *this;} private: MatchmakingConfiguration m_configuration; }; } // namespace Model } // namespace GameLift } // namespace Aws