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 DescribeMultiplexRequest<p><h3>See Also:</h3>   <a
21    * href="http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeMultiplexRequest">AWS
22    * API Reference</a></p>
23    */
24   class AWS_MEDIALIVE_API DescribeMultiplexRequest : public MediaLiveRequest
25   {
26   public:
27     DescribeMultiplexRequest();
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 "DescribeMultiplex"; }
34 
35     Aws::String SerializePayload() const override;
36 
37 
38     /**
39      * The ID of the multiplex.
40      */
GetMultiplexId()41     inline const Aws::String& GetMultiplexId() const{ return m_multiplexId; }
42 
43     /**
44      * The ID of the multiplex.
45      */
MultiplexIdHasBeenSet()46     inline bool MultiplexIdHasBeenSet() const { return m_multiplexIdHasBeenSet; }
47 
48     /**
49      * The ID of the multiplex.
50      */
SetMultiplexId(const Aws::String & value)51     inline void SetMultiplexId(const Aws::String& value) { m_multiplexIdHasBeenSet = true; m_multiplexId = value; }
52 
53     /**
54      * The ID of the multiplex.
55      */
SetMultiplexId(Aws::String && value)56     inline void SetMultiplexId(Aws::String&& value) { m_multiplexIdHasBeenSet = true; m_multiplexId = std::move(value); }
57 
58     /**
59      * The ID of the multiplex.
60      */
SetMultiplexId(const char * value)61     inline void SetMultiplexId(const char* value) { m_multiplexIdHasBeenSet = true; m_multiplexId.assign(value); }
62 
63     /**
64      * The ID of the multiplex.
65      */
WithMultiplexId(const Aws::String & value)66     inline DescribeMultiplexRequest& WithMultiplexId(const Aws::String& value) { SetMultiplexId(value); return *this;}
67 
68     /**
69      * The ID of the multiplex.
70      */
WithMultiplexId(Aws::String && value)71     inline DescribeMultiplexRequest& WithMultiplexId(Aws::String&& value) { SetMultiplexId(std::move(value)); return *this;}
72 
73     /**
74      * The ID of the multiplex.
75      */
WithMultiplexId(const char * value)76     inline DescribeMultiplexRequest& WithMultiplexId(const char* value) { SetMultiplexId(value); return *this;}
77 
78   private:
79 
80     Aws::String m_multiplexId;
81     bool m_multiplexIdHasBeenSet;
82   };
83 
84 } // namespace Model
85 } // namespace MediaLive
86 } // namespace Aws
87