AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateSegmentRequest.h
1
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/WriteSegmentRequest.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Pinpoint
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_PINPOINT_API UpdateSegmentRequest();
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.
31 inline virtual const char* GetServiceRequestName() const override { return "UpdateSegment"; }
32
33 AWS_PINPOINT_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::String& GetApplicationId() const{ return m_applicationId; }
42 inline bool ApplicationIdHasBeenSet() const { return m_applicationIdHasBeenSet; }
43 inline void SetApplicationId(const Aws::String& value) { m_applicationIdHasBeenSet = true; m_applicationId = value; }
44 inline void SetApplicationId(Aws::String&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::move(value); }
45 inline void SetApplicationId(const char* value) { m_applicationIdHasBeenSet = true; m_applicationId.assign(value); }
46 inline UpdateSegmentRequest& WithApplicationId(const Aws::String& value) { SetApplicationId(value); return *this;}
47 inline UpdateSegmentRequest& WithApplicationId(Aws::String&& value) { SetApplicationId(std::move(value)); return *this;}
48 inline UpdateSegmentRequest& WithApplicationId(const char* value) { SetApplicationId(value); return *this;}
50
52
55 inline const Aws::String& GetSegmentId() const{ return m_segmentId; }
56 inline bool SegmentIdHasBeenSet() const { return m_segmentIdHasBeenSet; }
57 inline void SetSegmentId(const Aws::String& value) { m_segmentIdHasBeenSet = true; m_segmentId = value; }
58 inline void SetSegmentId(Aws::String&& value) { m_segmentIdHasBeenSet = true; m_segmentId = std::move(value); }
59 inline void SetSegmentId(const char* value) { m_segmentIdHasBeenSet = true; m_segmentId.assign(value); }
60 inline UpdateSegmentRequest& WithSegmentId(const Aws::String& value) { SetSegmentId(value); return *this;}
61 inline UpdateSegmentRequest& WithSegmentId(Aws::String&& value) { SetSegmentId(std::move(value)); return *this;}
62 inline UpdateSegmentRequest& WithSegmentId(const char* value) { SetSegmentId(value); return *this;}
64
66
67 inline const WriteSegmentRequest& GetWriteSegmentRequest() const{ return m_writeSegmentRequest; }
68 inline bool WriteSegmentRequestHasBeenSet() const { return m_writeSegmentRequestHasBeenSet; }
69 inline void SetWriteSegmentRequest(const WriteSegmentRequest& value) { m_writeSegmentRequestHasBeenSet = true; m_writeSegmentRequest = value; }
70 inline void SetWriteSegmentRequest(WriteSegmentRequest&& value) { m_writeSegmentRequestHasBeenSet = true; m_writeSegmentRequest = std::move(value); }
74 private:
75
76 Aws::String m_applicationId;
77 bool m_applicationIdHasBeenSet = false;
78
79 Aws::String m_segmentId;
80 bool m_segmentIdHasBeenSet = false;
81
82 WriteSegmentRequest m_writeSegmentRequest;
83 bool m_writeSegmentRequestHasBeenSet = false;
84 };
85
86} // namespace Model
87} // namespace Pinpoint
88} // namespace Aws
virtual const char * GetServiceRequestName() const override
UpdateSegmentRequest & WithSegmentId(const Aws::String &value)
UpdateSegmentRequest & WithApplicationId(Aws::String &&value)
AWS_PINPOINT_API Aws::String SerializePayload() const override
void SetSegmentId(const Aws::String &value)
UpdateSegmentRequest & WithSegmentId(const char *value)
void SetWriteSegmentRequest(WriteSegmentRequest &&value)
UpdateSegmentRequest & WithWriteSegmentRequest(WriteSegmentRequest &&value)
const WriteSegmentRequest & GetWriteSegmentRequest() const
void SetWriteSegmentRequest(const WriteSegmentRequest &value)
UpdateSegmentRequest & WithApplicationId(const char *value)
UpdateSegmentRequest & WithWriteSegmentRequest(const WriteSegmentRequest &value)
void SetApplicationId(const Aws::String &value)
UpdateSegmentRequest & WithApplicationId(const Aws::String &value)
UpdateSegmentRequest & WithSegmentId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String