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/chime/Chime_EXPORTS.h>
8 #include <aws/chime/ChimeRequest.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 Chime
19 {
20 namespace Model
21 {
22 
23   /**
24    */
25   class AWS_CHIME_API ListSipMediaApplicationsRequest : public ChimeRequest
26   {
27   public:
28     ListSipMediaApplicationsRequest();
29 
30     // Service request name is the Operation name which will send this request out,
31     // each operation should has unique request name, so that we can get operation's name from this request.
32     // Note: this is not true for response, multiple operations may have the same response name,
33     // so we can not get operation's name from response.
GetServiceRequestName()34     inline virtual const char* GetServiceRequestName() const override { return "ListSipMediaApplications"; }
35 
36     Aws::String SerializePayload() const override;
37 
38     void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39 
40 
41     /**
42      * <p>The maximum number of results to return in a single call. Defaults to
43      * 100.</p>
44      */
GetMaxResults()45     inline int GetMaxResults() const{ return m_maxResults; }
46 
47     /**
48      * <p>The maximum number of results to return in a single call. Defaults to
49      * 100.</p>
50      */
MaxResultsHasBeenSet()51     inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
52 
53     /**
54      * <p>The maximum number of results to return in a single call. Defaults to
55      * 100.</p>
56      */
SetMaxResults(int value)57     inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
58 
59     /**
60      * <p>The maximum number of results to return in a single call. Defaults to
61      * 100.</p>
62      */
WithMaxResults(int value)63     inline ListSipMediaApplicationsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
64 
65 
66     /**
67      * <p>The token to use to retrieve the next page of results.</p>
68      */
GetNextToken()69     inline const Aws::String& GetNextToken() const{ return m_nextToken; }
70 
71     /**
72      * <p>The token to use to retrieve the next page of results.</p>
73      */
NextTokenHasBeenSet()74     inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
75 
76     /**
77      * <p>The token to use to retrieve the next page of results.</p>
78      */
SetNextToken(const Aws::String & value)79     inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
80 
81     /**
82      * <p>The token to use to retrieve the next page of results.</p>
83      */
SetNextToken(Aws::String && value)84     inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
85 
86     /**
87      * <p>The token to use to retrieve the next page of results.</p>
88      */
SetNextToken(const char * value)89     inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
90 
91     /**
92      * <p>The token to use to retrieve the next page of results.</p>
93      */
WithNextToken(const Aws::String & value)94     inline ListSipMediaApplicationsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
95 
96     /**
97      * <p>The token to use to retrieve the next page of results.</p>
98      */
WithNextToken(Aws::String && value)99     inline ListSipMediaApplicationsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
100 
101     /**
102      * <p>The token to use to retrieve the next page of results.</p>
103      */
WithNextToken(const char * value)104     inline ListSipMediaApplicationsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
105 
106   private:
107 
108     int m_maxResults;
109     bool m_maxResultsHasBeenSet;
110 
111     Aws::String m_nextToken;
112     bool m_nextTokenHasBeenSet;
113   };
114 
115 } // namespace Model
116 } // namespace Chime
117 } // namespace Aws
118