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/WriteJourneyRequest.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 UpdateJourneyRequest : public PinpointRequest
23   {
24   public:
25     UpdateJourneyRequest();
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 "UpdateJourney"; }
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 UpdateJourneyRequest& 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 UpdateJourneyRequest& 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 UpdateJourneyRequest& WithApplicationId(const char* value) { SetApplicationId(value); return *this;}
83 
84 
85     /**
86      * <p>The unique identifier for the journey.</p>
87      */
GetJourneyId()88     inline const Aws::String& GetJourneyId() const{ return m_journeyId; }
89 
90     /**
91      * <p>The unique identifier for the journey.</p>
92      */
JourneyIdHasBeenSet()93     inline bool JourneyIdHasBeenSet() const { return m_journeyIdHasBeenSet; }
94 
95     /**
96      * <p>The unique identifier for the journey.</p>
97      */
SetJourneyId(const Aws::String & value)98     inline void SetJourneyId(const Aws::String& value) { m_journeyIdHasBeenSet = true; m_journeyId = value; }
99 
100     /**
101      * <p>The unique identifier for the journey.</p>
102      */
SetJourneyId(Aws::String && value)103     inline void SetJourneyId(Aws::String&& value) { m_journeyIdHasBeenSet = true; m_journeyId = std::move(value); }
104 
105     /**
106      * <p>The unique identifier for the journey.</p>
107      */
SetJourneyId(const char * value)108     inline void SetJourneyId(const char* value) { m_journeyIdHasBeenSet = true; m_journeyId.assign(value); }
109 
110     /**
111      * <p>The unique identifier for the journey.</p>
112      */
WithJourneyId(const Aws::String & value)113     inline UpdateJourneyRequest& WithJourneyId(const Aws::String& value) { SetJourneyId(value); return *this;}
114 
115     /**
116      * <p>The unique identifier for the journey.</p>
117      */
WithJourneyId(Aws::String && value)118     inline UpdateJourneyRequest& WithJourneyId(Aws::String&& value) { SetJourneyId(std::move(value)); return *this;}
119 
120     /**
121      * <p>The unique identifier for the journey.</p>
122      */
WithJourneyId(const char * value)123     inline UpdateJourneyRequest& WithJourneyId(const char* value) { SetJourneyId(value); return *this;}
124 
125 
126 
GetWriteJourneyRequest()127     inline const WriteJourneyRequest& GetWriteJourneyRequest() const{ return m_writeJourneyRequest; }
128 
129 
WriteJourneyRequestHasBeenSet()130     inline bool WriteJourneyRequestHasBeenSet() const { return m_writeJourneyRequestHasBeenSet; }
131 
132 
SetWriteJourneyRequest(const WriteJourneyRequest & value)133     inline void SetWriteJourneyRequest(const WriteJourneyRequest& value) { m_writeJourneyRequestHasBeenSet = true; m_writeJourneyRequest = value; }
134 
135 
SetWriteJourneyRequest(WriteJourneyRequest && value)136     inline void SetWriteJourneyRequest(WriteJourneyRequest&& value) { m_writeJourneyRequestHasBeenSet = true; m_writeJourneyRequest = std::move(value); }
137 
138 
WithWriteJourneyRequest(const WriteJourneyRequest & value)139     inline UpdateJourneyRequest& WithWriteJourneyRequest(const WriteJourneyRequest& value) { SetWriteJourneyRequest(value); return *this;}
140 
141 
WithWriteJourneyRequest(WriteJourneyRequest && value)142     inline UpdateJourneyRequest& WithWriteJourneyRequest(WriteJourneyRequest&& value) { SetWriteJourneyRequest(std::move(value)); return *this;}
143 
144   private:
145 
146     Aws::String m_applicationId;
147     bool m_applicationIdHasBeenSet;
148 
149     Aws::String m_journeyId;
150     bool m_journeyIdHasBeenSet;
151 
152     WriteJourneyRequest m_writeJourneyRequest;
153     bool m_writeJourneyRequestHasBeenSet;
154   };
155 
156 } // namespace Model
157 } // namespace Pinpoint
158 } // namespace Aws
159