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 Http
15 {
16     class URI;
17 } //namespace Http
18 namespace MediaLive
19 {
20 namespace Model
21 {
22 
23   /**
24    * Placeholder documentation for ListInputDevicesRequest<p><h3>See Also:</h3>   <a
25    * href="http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDevicesRequest">AWS
26    * API Reference</a></p>
27    */
28   class AWS_MEDIALIVE_API ListInputDevicesRequest : public MediaLiveRequest
29   {
30   public:
31     ListInputDevicesRequest();
32 
33     // Service request name is the Operation name which will send this request out,
34     // each operation should has unique request name, so that we can get operation's name from this request.
35     // Note: this is not true for response, multiple operations may have the same response name,
36     // so we can not get operation's name from response.
GetServiceRequestName()37     inline virtual const char* GetServiceRequestName() const override { return "ListInputDevices"; }
38 
39     Aws::String SerializePayload() const override;
40 
41     void AddQueryStringParameters(Aws::Http::URI& uri) const override;
42 
43 
44 
GetMaxResults()45     inline int GetMaxResults() const{ return m_maxResults; }
46 
47 
MaxResultsHasBeenSet()48     inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
49 
50 
SetMaxResults(int value)51     inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
52 
53 
WithMaxResults(int value)54     inline ListInputDevicesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
55 
56 
57 
GetNextToken()58     inline const Aws::String& GetNextToken() const{ return m_nextToken; }
59 
60 
NextTokenHasBeenSet()61     inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
62 
63 
SetNextToken(const Aws::String & value)64     inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
65 
66 
SetNextToken(Aws::String && value)67     inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
68 
69 
SetNextToken(const char * value)70     inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
71 
72 
WithNextToken(const Aws::String & value)73     inline ListInputDevicesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
74 
75 
WithNextToken(Aws::String && value)76     inline ListInputDevicesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
77 
78 
WithNextToken(const char * value)79     inline ListInputDevicesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
80 
81   private:
82 
83     int m_maxResults;
84     bool m_maxResultsHasBeenSet;
85 
86     Aws::String m_nextToken;
87     bool m_nextTokenHasBeenSet;
88   };
89 
90 } // namespace Model
91 } // namespace MediaLive
92 } // namespace Aws
93