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

A set of properties describing the requested script.

*/ inline const Script& GetScript() const{ return m_script; } /** *

A set of properties describing the requested script.

*/ inline void SetScript(const Script& value) { m_script = value; } /** *

A set of properties describing the requested script.

*/ inline void SetScript(Script&& value) { m_script = std::move(value); } /** *

A set of properties describing the requested script.

*/ inline DescribeScriptResult& WithScript(const Script& value) { SetScript(value); return *this;} /** *

A set of properties describing the requested script.

*/ inline DescribeScriptResult& WithScript(Script&& value) { SetScript(std::move(value)); return *this;} private: Script m_script; }; } // namespace Model } // namespace GameLift } // namespace Aws