1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #pragma once
7 #include <aws/gamelift/GameLift_EXPORTS.h>
8 #include <aws/gamelift/model/Script.h>
9 #include <utility>
10 
11 namespace Aws
12 {
13 template<typename RESULT_TYPE>
14 class AmazonWebServiceResult;
15 
16 namespace Utils
17 {
18 namespace Json
19 {
20   class JsonValue;
21 } // namespace Json
22 } // namespace Utils
23 namespace GameLift
24 {
25 namespace Model
26 {
27   class AWS_GAMELIFT_API DescribeScriptResult
28   {
29   public:
30     DescribeScriptResult();
31     DescribeScriptResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
32     DescribeScriptResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
33 
34 
35     /**
36      * <p>A set of properties describing the requested script.</p>
37      */
GetScript()38     inline const Script& GetScript() const{ return m_script; }
39 
40     /**
41      * <p>A set of properties describing the requested script.</p>
42      */
SetScript(const Script & value)43     inline void SetScript(const Script& value) { m_script = value; }
44 
45     /**
46      * <p>A set of properties describing the requested script.</p>
47      */
SetScript(Script && value)48     inline void SetScript(Script&& value) { m_script = std::move(value); }
49 
50     /**
51      * <p>A set of properties describing the requested script.</p>
52      */
WithScript(const Script & value)53     inline DescribeScriptResult& WithScript(const Script& value) { SetScript(value); return *this;}
54 
55     /**
56      * <p>A set of properties describing the requested script.</p>
57      */
WithScript(Script && value)58     inline DescribeScriptResult& WithScript(Script&& value) { SetScript(std::move(value)); return *this;}
59 
60   private:
61 
62     Script m_script;
63   };
64 
65 } // namespace Model
66 } // namespace GameLift
67 } // namespace Aws
68