/** * 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 DescribeRuntimeConfigurationResult { public: DescribeRuntimeConfigurationResult(); DescribeRuntimeConfigurationResult(const Aws::AmazonWebServiceResult& result); DescribeRuntimeConfigurationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Instructions describing how server processes should be launched and * maintained on each instance in the fleet.

*/ inline const RuntimeConfiguration& GetRuntimeConfiguration() const{ return m_runtimeConfiguration; } /** *

Instructions describing how server processes should be launched and * maintained on each instance in the fleet.

*/ inline void SetRuntimeConfiguration(const RuntimeConfiguration& value) { m_runtimeConfiguration = value; } /** *

Instructions describing how server processes should be launched and * maintained on each instance in the fleet.

*/ inline void SetRuntimeConfiguration(RuntimeConfiguration&& value) { m_runtimeConfiguration = std::move(value); } /** *

Instructions describing how server processes should be launched and * maintained on each instance in the fleet.

*/ inline DescribeRuntimeConfigurationResult& WithRuntimeConfiguration(const RuntimeConfiguration& value) { SetRuntimeConfiguration(value); return *this;} /** *

Instructions describing how server processes should be launched and * maintained on each instance in the fleet.

*/ inline DescribeRuntimeConfigurationResult& WithRuntimeConfiguration(RuntimeConfiguration&& value) { SetRuntimeConfiguration(std::move(value)); return *this;} private: RuntimeConfiguration m_runtimeConfiguration; }; } // namespace Model } // namespace GameLift } // namespace Aws