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/amplify/Amplify_EXPORTS.h>
8 #include <aws/amplify/model/Job.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 Amplify
24 {
25 namespace Model
26 {
27   class AWS_AMPLIFY_API GetJobResult
28   {
29   public:
30     GetJobResult();
31     GetJobResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
32     GetJobResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
33 
34 
35 
GetJob()36     inline const Job& GetJob() const{ return m_job; }
37 
38 
SetJob(const Job & value)39     inline void SetJob(const Job& value) { m_job = value; }
40 
41 
SetJob(Job && value)42     inline void SetJob(Job&& value) { m_job = std::move(value); }
43 
44 
WithJob(const Job & value)45     inline GetJobResult& WithJob(const Job& value) { SetJob(value); return *this;}
46 
47 
WithJob(Job && value)48     inline GetJobResult& WithJob(Job&& value) { SetJob(std::move(value)); return *this;}
49 
50   private:
51 
52     Job m_job;
53   };
54 
55 } // namespace Model
56 } // namespace Amplify
57 } // namespace Aws
58