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/pinpoint/Pinpoint_EXPORTS.h>
8 #include <aws/pinpoint/PinpointRequest.h>
9 #include <aws/core/utils/memory/stl/AWSString.h>
10 #include <aws/pinpoint/model/EndpointRequest.h>
11 #include <utility>
12 
13 namespace Aws
14 {
15 namespace Pinpoint
16 {
17 namespace Model
18 {
19 
20   /**
21    */
22   class AWS_PINPOINT_API UpdateEndpointRequest : public PinpointRequest
23   {
24   public:
25     UpdateEndpointRequest();
26 
27     // Service request name is the Operation name which will send this request out,
28     // each operation should has unique request name, so that we can get operation's name from this request.
29     // Note: this is not true for response, multiple operations may have the same response name,
30     // so we can not get operation's name from response.
GetServiceRequestName()31     inline virtual const char* GetServiceRequestName() const override { return "UpdateEndpoint"; }
32 
33     Aws::String SerializePayload() const override;
34 
35 
36     /**
37      * <p>The unique identifier for the application. This identifier is displayed as
38      * the <b>Project ID</b> on the Amazon Pinpoint console.</p>
39      */
GetApplicationId()40     inline const Aws::String& GetApplicationId() const{ return m_applicationId; }
41 
42     /**
43      * <p>The unique identifier for the application. This identifier is displayed as
44      * the <b>Project ID</b> on the Amazon Pinpoint console.</p>
45      */
ApplicationIdHasBeenSet()46     inline bool ApplicationIdHasBeenSet() const { return m_applicationIdHasBeenSet; }
47 
48     /**
49      * <p>The unique identifier for the application. This identifier is displayed as
50      * the <b>Project ID</b> on the Amazon Pinpoint console.</p>
51      */
SetApplicationId(const Aws::String & value)52     inline void SetApplicationId(const Aws::String& value) { m_applicationIdHasBeenSet = true; m_applicationId = value; }
53 
54     /**
55      * <p>The unique identifier for the application. This identifier is displayed as
56      * the <b>Project ID</b> on the Amazon Pinpoint console.</p>
57      */
SetApplicationId(Aws::String && value)58     inline void SetApplicationId(Aws::String&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::move(value); }
59 
60     /**
61      * <p>The unique identifier for the application. This identifier is displayed as
62      * the <b>Project ID</b> on the Amazon Pinpoint console.</p>
63      */
SetApplicationId(const char * value)64     inline void SetApplicationId(const char* value) { m_applicationIdHasBeenSet = true; m_applicationId.assign(value); }
65 
66     /**
67      * <p>The unique identifier for the application. This identifier is displayed as
68      * the <b>Project ID</b> on the Amazon Pinpoint console.</p>
69      */
WithApplicationId(const Aws::String & value)70     inline UpdateEndpointRequest& WithApplicationId(const Aws::String& value) { SetApplicationId(value); return *this;}
71 
72     /**
73      * <p>The unique identifier for the application. This identifier is displayed as
74      * the <b>Project ID</b> on the Amazon Pinpoint console.</p>
75      */
WithApplicationId(Aws::String && value)76     inline UpdateEndpointRequest& WithApplicationId(Aws::String&& value) { SetApplicationId(std::move(value)); return *this;}
77 
78     /**
79      * <p>The unique identifier for the application. This identifier is displayed as
80      * the <b>Project ID</b> on the Amazon Pinpoint console.</p>
81      */
WithApplicationId(const char * value)82     inline UpdateEndpointRequest& WithApplicationId(const char* value) { SetApplicationId(value); return *this;}
83 
84 
85     /**
86      * <p>The unique identifier for the endpoint.</p>
87      */
GetEndpointId()88     inline const Aws::String& GetEndpointId() const{ return m_endpointId; }
89 
90     /**
91      * <p>The unique identifier for the endpoint.</p>
92      */
EndpointIdHasBeenSet()93     inline bool EndpointIdHasBeenSet() const { return m_endpointIdHasBeenSet; }
94 
95     /**
96      * <p>The unique identifier for the endpoint.</p>
97      */
SetEndpointId(const Aws::String & value)98     inline void SetEndpointId(const Aws::String& value) { m_endpointIdHasBeenSet = true; m_endpointId = value; }
99 
100     /**
101      * <p>The unique identifier for the endpoint.</p>
102      */
SetEndpointId(Aws::String && value)103     inline void SetEndpointId(Aws::String&& value) { m_endpointIdHasBeenSet = true; m_endpointId = std::move(value); }
104 
105     /**
106      * <p>The unique identifier for the endpoint.</p>
107      */
SetEndpointId(const char * value)108     inline void SetEndpointId(const char* value) { m_endpointIdHasBeenSet = true; m_endpointId.assign(value); }
109 
110     /**
111      * <p>The unique identifier for the endpoint.</p>
112      */
WithEndpointId(const Aws::String & value)113     inline UpdateEndpointRequest& WithEndpointId(const Aws::String& value) { SetEndpointId(value); return *this;}
114 
115     /**
116      * <p>The unique identifier for the endpoint.</p>
117      */
WithEndpointId(Aws::String && value)118     inline UpdateEndpointRequest& WithEndpointId(Aws::String&& value) { SetEndpointId(std::move(value)); return *this;}
119 
120     /**
121      * <p>The unique identifier for the endpoint.</p>
122      */
WithEndpointId(const char * value)123     inline UpdateEndpointRequest& WithEndpointId(const char* value) { SetEndpointId(value); return *this;}
124 
125 
126 
GetEndpointRequest()127     inline const EndpointRequest& GetEndpointRequest() const{ return m_endpointRequest; }
128 
129 
EndpointRequestHasBeenSet()130     inline bool EndpointRequestHasBeenSet() const { return m_endpointRequestHasBeenSet; }
131 
132 
SetEndpointRequest(const EndpointRequest & value)133     inline void SetEndpointRequest(const EndpointRequest& value) { m_endpointRequestHasBeenSet = true; m_endpointRequest = value; }
134 
135 
SetEndpointRequest(EndpointRequest && value)136     inline void SetEndpointRequest(EndpointRequest&& value) { m_endpointRequestHasBeenSet = true; m_endpointRequest = std::move(value); }
137 
138 
WithEndpointRequest(const EndpointRequest & value)139     inline UpdateEndpointRequest& WithEndpointRequest(const EndpointRequest& value) { SetEndpointRequest(value); return *this;}
140 
141 
WithEndpointRequest(EndpointRequest && value)142     inline UpdateEndpointRequest& WithEndpointRequest(EndpointRequest&& value) { SetEndpointRequest(std::move(value)); return *this;}
143 
144   private:
145 
146     Aws::String m_applicationId;
147     bool m_applicationIdHasBeenSet;
148 
149     Aws::String m_endpointId;
150     bool m_endpointIdHasBeenSet;
151 
152     EndpointRequest m_endpointRequest;
153     bool m_endpointRequestHasBeenSet;
154   };
155 
156 } // namespace Model
157 } // namespace Pinpoint
158 } // namespace Aws
159