/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the returned data in response to a request action.See
* Also:
AWS
* API Reference
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