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/securityhub/SecurityHub_EXPORTS.h>
8 #include <aws/securityhub/SecurityHubRequest.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 SecurityHub
19 {
20 namespace Model
21 {
22 
23   /**
24    */
25   class AWS_SECURITYHUB_API ListFindingAggregatorsRequest : public SecurityHubRequest
26   {
27   public:
28     ListFindingAggregatorsRequest();
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 "ListFindingAggregators"; }
35 
36     Aws::String SerializePayload() const override;
37 
38     void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39 
40 
41     /**
42      * <p>The token returned with the previous set of results. Identifies the next set
43      * of results to return.</p>
44      */
GetNextToken()45     inline const Aws::String& GetNextToken() const{ return m_nextToken; }
46 
47     /**
48      * <p>The token returned with the previous set of results. Identifies the next set
49      * of results to return.</p>
50      */
NextTokenHasBeenSet()51     inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
52 
53     /**
54      * <p>The token returned with the previous set of results. Identifies the next set
55      * of results to return.</p>
56      */
SetNextToken(const Aws::String & value)57     inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
58 
59     /**
60      * <p>The token returned with the previous set of results. Identifies the next set
61      * of results to return.</p>
62      */
SetNextToken(Aws::String && value)63     inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
64 
65     /**
66      * <p>The token returned with the previous set of results. Identifies the next set
67      * of results to return.</p>
68      */
SetNextToken(const char * value)69     inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
70 
71     /**
72      * <p>The token returned with the previous set of results. Identifies the next set
73      * of results to return.</p>
74      */
WithNextToken(const Aws::String & value)75     inline ListFindingAggregatorsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
76 
77     /**
78      * <p>The token returned with the previous set of results. Identifies the next set
79      * of results to return.</p>
80      */
WithNextToken(Aws::String && value)81     inline ListFindingAggregatorsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
82 
83     /**
84      * <p>The token returned with the previous set of results. Identifies the next set
85      * of results to return.</p>
86      */
WithNextToken(const char * value)87     inline ListFindingAggregatorsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
88 
89 
90     /**
91      * <p>The maximum number of results to return. This operation currently only
92      * returns a single result.</p>
93      */
GetMaxResults()94     inline int GetMaxResults() const{ return m_maxResults; }
95 
96     /**
97      * <p>The maximum number of results to return. This operation currently only
98      * returns a single result.</p>
99      */
MaxResultsHasBeenSet()100     inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
101 
102     /**
103      * <p>The maximum number of results to return. This operation currently only
104      * returns a single result.</p>
105      */
SetMaxResults(int value)106     inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
107 
108     /**
109      * <p>The maximum number of results to return. This operation currently only
110      * returns a single result.</p>
111      */
WithMaxResults(int value)112     inline ListFindingAggregatorsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
113 
114   private:
115 
116     Aws::String m_nextToken;
117     bool m_nextTokenHasBeenSet;
118 
119     int m_maxResults;
120     bool m_maxResultsHasBeenSet;
121   };
122 
123 } // namespace Model
124 } // namespace SecurityHub
125 } // namespace Aws
126