/**
* 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 runtime configuration currently in force. If the update was successful, * this object matches the one in the request.
*/ inline const RuntimeConfiguration& GetRuntimeConfiguration() const{ return m_runtimeConfiguration; } /** *The runtime configuration currently in force. If the update was successful, * this object matches the one in the request.
*/ inline void SetRuntimeConfiguration(const RuntimeConfiguration& value) { m_runtimeConfiguration = value; } /** *The runtime configuration currently in force. If the update was successful, * this object matches the one in the request.
*/ inline void SetRuntimeConfiguration(RuntimeConfiguration&& value) { m_runtimeConfiguration = std::move(value); } /** *The runtime configuration currently in force. If the update was successful, * this object matches the one in the request.
*/ inline UpdateRuntimeConfigurationResult& WithRuntimeConfiguration(const RuntimeConfiguration& value) { SetRuntimeConfiguration(value); return *this;} /** *The runtime configuration currently in force. If the update was successful, * this object matches the one in the request.
*/ inline UpdateRuntimeConfigurationResult& WithRuntimeConfiguration(RuntimeConfiguration&& value) { SetRuntimeConfiguration(std::move(value)); return *this;} private: RuntimeConfiguration m_runtimeConfiguration; }; } // namespace Model } // namespace GameLift } // namespace Aws