AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetSegmentExportJobsRequest.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 <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace Pinpoint
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_PINPOINT_API GetSegmentExportJobsRequest() = default;
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.
34 inline virtual const char* GetServiceRequestName() const override { return "GetSegmentExportJobs"; }
35
36 AWS_PINPOINT_API Aws::String SerializePayload() const override;
37
38 AWS_PINPOINT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
46 inline const Aws::String& GetApplicationId() const { return m_applicationId; }
47 inline bool ApplicationIdHasBeenSet() const { return m_applicationIdHasBeenSet; }
48 template<typename ApplicationIdT = Aws::String>
49 void SetApplicationId(ApplicationIdT&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::forward<ApplicationIdT>(value); }
50 template<typename ApplicationIdT = Aws::String>
51 GetSegmentExportJobsRequest& WithApplicationId(ApplicationIdT&& value) { SetApplicationId(std::forward<ApplicationIdT>(value)); return *this;}
53
55
60 inline const Aws::String& GetPageSize() const { return m_pageSize; }
61 inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
62 template<typename PageSizeT = Aws::String>
63 void SetPageSize(PageSizeT&& value) { m_pageSizeHasBeenSet = true; m_pageSize = std::forward<PageSizeT>(value); }
64 template<typename PageSizeT = Aws::String>
65 GetSegmentExportJobsRequest& WithPageSize(PageSizeT&& value) { SetPageSize(std::forward<PageSizeT>(value)); return *this;}
67
69
72 inline const Aws::String& GetSegmentId() const { return m_segmentId; }
73 inline bool SegmentIdHasBeenSet() const { return m_segmentIdHasBeenSet; }
74 template<typename SegmentIdT = Aws::String>
75 void SetSegmentId(SegmentIdT&& value) { m_segmentIdHasBeenSet = true; m_segmentId = std::forward<SegmentIdT>(value); }
76 template<typename SegmentIdT = Aws::String>
77 GetSegmentExportJobsRequest& WithSegmentId(SegmentIdT&& value) { SetSegmentId(std::forward<SegmentIdT>(value)); return *this;}
79
81
85 inline const Aws::String& GetToken() const { return m_token; }
86 inline bool TokenHasBeenSet() const { return m_tokenHasBeenSet; }
87 template<typename TokenT = Aws::String>
88 void SetToken(TokenT&& value) { m_tokenHasBeenSet = true; m_token = std::forward<TokenT>(value); }
89 template<typename TokenT = Aws::String>
90 GetSegmentExportJobsRequest& WithToken(TokenT&& value) { SetToken(std::forward<TokenT>(value)); return *this;}
92 private:
93
94 Aws::String m_applicationId;
95 bool m_applicationIdHasBeenSet = false;
96
97 Aws::String m_pageSize;
98 bool m_pageSizeHasBeenSet = false;
99
100 Aws::String m_segmentId;
101 bool m_segmentIdHasBeenSet = false;
102
103 Aws::String m_token;
104 bool m_tokenHasBeenSet = false;
105 };
106
107} // namespace Model
108} // namespace Pinpoint
109} // namespace Aws
GetSegmentExportJobsRequest & WithToken(TokenT &&value)
AWS_PINPOINT_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
GetSegmentExportJobsRequest & WithPageSize(PageSizeT &&value)
GetSegmentExportJobsRequest & WithApplicationId(ApplicationIdT &&value)
AWS_PINPOINT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetSegmentExportJobsRequest & WithSegmentId(SegmentIdT &&value)
AWS_PINPOINT_API GetSegmentExportJobsRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String