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/medialive/MediaLive_EXPORTS.h>
8 #include <aws/medialive/model/Input.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 MediaLive
24 {
25 namespace Model
26 {
27   /**
28    * Placeholder documentation for CreatePartnerInputResponse<p><h3>See Also:</h3>
29    * <a
30    * href="http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreatePartnerInputResponse">AWS
31    * API Reference</a></p>
32    */
33   class AWS_MEDIALIVE_API CreatePartnerInputResult
34   {
35   public:
36     CreatePartnerInputResult();
37     CreatePartnerInputResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
38     CreatePartnerInputResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
39 
40 
41 
GetInput()42     inline const Input& GetInput() const{ return m_input; }
43 
44 
SetInput(const Input & value)45     inline void SetInput(const Input& value) { m_input = value; }
46 
47 
SetInput(Input && value)48     inline void SetInput(Input&& value) { m_input = std::move(value); }
49 
50 
WithInput(const Input & value)51     inline CreatePartnerInputResult& WithInput(const Input& value) { SetInput(value); return *this;}
52 
53 
WithInput(Input && value)54     inline CreatePartnerInputResult& WithInput(Input&& value) { SetInput(std::move(value)); return *this;}
55 
56   private:
57 
58     Input m_input;
59   };
60 
61 } // namespace Model
62 } // namespace MediaLive
63 } // namespace Aws
64