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/MediaLiveRequest.h>
9 #include <aws/core/utils/memory/stl/AWSString.h>
10 #include <utility>
11 
12 namespace Aws
13 {
14 namespace MediaLive
15 {
16 namespace Model
17 {
18 
19   /**
20    * Placeholder documentation for DescribeInputRequest<p><h3>See Also:</h3>   <a
21    * href="http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputRequest">AWS
22    * API Reference</a></p>
23    */
24   class AWS_MEDIALIVE_API DescribeInputRequest : public MediaLiveRequest
25   {
26   public:
27     DescribeInputRequest();
28 
29     // Service request name is the Operation name which will send this request out,
30     // each operation should has unique request name, so that we can get operation's name from this request.
31     // Note: this is not true for response, multiple operations may have the same response name,
32     // so we can not get operation's name from response.
GetServiceRequestName()33     inline virtual const char* GetServiceRequestName() const override { return "DescribeInput"; }
34 
35     Aws::String SerializePayload() const override;
36 
37 
38     /**
39      * Unique ID of the input
40      */
GetInputId()41     inline const Aws::String& GetInputId() const{ return m_inputId; }
42 
43     /**
44      * Unique ID of the input
45      */
InputIdHasBeenSet()46     inline bool InputIdHasBeenSet() const { return m_inputIdHasBeenSet; }
47 
48     /**
49      * Unique ID of the input
50      */
SetInputId(const Aws::String & value)51     inline void SetInputId(const Aws::String& value) { m_inputIdHasBeenSet = true; m_inputId = value; }
52 
53     /**
54      * Unique ID of the input
55      */
SetInputId(Aws::String && value)56     inline void SetInputId(Aws::String&& value) { m_inputIdHasBeenSet = true; m_inputId = std::move(value); }
57 
58     /**
59      * Unique ID of the input
60      */
SetInputId(const char * value)61     inline void SetInputId(const char* value) { m_inputIdHasBeenSet = true; m_inputId.assign(value); }
62 
63     /**
64      * Unique ID of the input
65      */
WithInputId(const Aws::String & value)66     inline DescribeInputRequest& WithInputId(const Aws::String& value) { SetInputId(value); return *this;}
67 
68     /**
69      * Unique ID of the input
70      */
WithInputId(Aws::String && value)71     inline DescribeInputRequest& WithInputId(Aws::String&& value) { SetInputId(std::move(value)); return *this;}
72 
73     /**
74      * Unique ID of the input
75      */
WithInputId(const char * value)76     inline DescribeInputRequest& WithInputId(const char* value) { SetInputId(value); return *this;}
77 
78   private:
79 
80     Aws::String m_inputId;
81     bool m_inputIdHasBeenSet;
82   };
83 
84 } // namespace Model
85 } // namespace MediaLive
86 } // namespace Aws
87