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/elasticmapreduce/EMR_EXPORTS.h>
8 #include <aws/elasticmapreduce/EMRRequest.h>
9 #include <aws/core/utils/memory/stl/AWSString.h>
10 #include <utility>
11 
12 namespace Aws
13 {
14 namespace EMR
15 {
16 namespace Model
17 {
18 
19   /**
20    * <p>This input determines which instance groups to retrieve.</p><p><h3>See
21    * Also:</h3>   <a
22    * href="http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListInstanceGroupsInput">AWS
23    * API Reference</a></p>
24    */
25   class AWS_EMR_API ListInstanceGroupsRequest : public EMRRequest
26   {
27   public:
28     ListInstanceGroupsRequest();
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 "ListInstanceGroups"; }
35 
36     Aws::String SerializePayload() const override;
37 
38     Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
39 
40 
41     /**
42      * <p>The identifier of the cluster for which to list the instance groups.</p>
43      */
GetClusterId()44     inline const Aws::String& GetClusterId() const{ return m_clusterId; }
45 
46     /**
47      * <p>The identifier of the cluster for which to list the instance groups.</p>
48      */
ClusterIdHasBeenSet()49     inline bool ClusterIdHasBeenSet() const { return m_clusterIdHasBeenSet; }
50 
51     /**
52      * <p>The identifier of the cluster for which to list the instance groups.</p>
53      */
SetClusterId(const Aws::String & value)54     inline void SetClusterId(const Aws::String& value) { m_clusterIdHasBeenSet = true; m_clusterId = value; }
55 
56     /**
57      * <p>The identifier of the cluster for which to list the instance groups.</p>
58      */
SetClusterId(Aws::String && value)59     inline void SetClusterId(Aws::String&& value) { m_clusterIdHasBeenSet = true; m_clusterId = std::move(value); }
60 
61     /**
62      * <p>The identifier of the cluster for which to list the instance groups.</p>
63      */
SetClusterId(const char * value)64     inline void SetClusterId(const char* value) { m_clusterIdHasBeenSet = true; m_clusterId.assign(value); }
65 
66     /**
67      * <p>The identifier of the cluster for which to list the instance groups.</p>
68      */
WithClusterId(const Aws::String & value)69     inline ListInstanceGroupsRequest& WithClusterId(const Aws::String& value) { SetClusterId(value); return *this;}
70 
71     /**
72      * <p>The identifier of the cluster for which to list the instance groups.</p>
73      */
WithClusterId(Aws::String && value)74     inline ListInstanceGroupsRequest& WithClusterId(Aws::String&& value) { SetClusterId(std::move(value)); return *this;}
75 
76     /**
77      * <p>The identifier of the cluster for which to list the instance groups.</p>
78      */
WithClusterId(const char * value)79     inline ListInstanceGroupsRequest& WithClusterId(const char* value) { SetClusterId(value); return *this;}
80 
81 
82     /**
83      * <p>The pagination token that indicates the next set of results to retrieve.</p>
84      */
GetMarker()85     inline const Aws::String& GetMarker() const{ return m_marker; }
86 
87     /**
88      * <p>The pagination token that indicates the next set of results to retrieve.</p>
89      */
MarkerHasBeenSet()90     inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
91 
92     /**
93      * <p>The pagination token that indicates the next set of results to retrieve.</p>
94      */
SetMarker(const Aws::String & value)95     inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
96 
97     /**
98      * <p>The pagination token that indicates the next set of results to retrieve.</p>
99      */
SetMarker(Aws::String && value)100     inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
101 
102     /**
103      * <p>The pagination token that indicates the next set of results to retrieve.</p>
104      */
SetMarker(const char * value)105     inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
106 
107     /**
108      * <p>The pagination token that indicates the next set of results to retrieve.</p>
109      */
WithMarker(const Aws::String & value)110     inline ListInstanceGroupsRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
111 
112     /**
113      * <p>The pagination token that indicates the next set of results to retrieve.</p>
114      */
WithMarker(Aws::String && value)115     inline ListInstanceGroupsRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
116 
117     /**
118      * <p>The pagination token that indicates the next set of results to retrieve.</p>
119      */
WithMarker(const char * value)120     inline ListInstanceGroupsRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
121 
122   private:
123 
124     Aws::String m_clusterId;
125     bool m_clusterIdHasBeenSet;
126 
127     Aws::String m_marker;
128     bool m_markerHasBeenSet;
129   };
130 
131 } // namespace Model
132 } // namespace EMR
133 } // namespace Aws
134