AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetImportJobsRequest.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 GetImportJobsRequest();
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 "GetImportJobs"; }
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 inline void SetApplicationId(const Aws::String& value) { m_applicationIdHasBeenSet = true; m_applicationId = value; }
49 inline void SetApplicationId(Aws::String&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::move(value); }
50 inline void SetApplicationId(const char* value) { m_applicationIdHasBeenSet = true; m_applicationId.assign(value); }
51 inline GetImportJobsRequest& WithApplicationId(const Aws::String& value) { SetApplicationId(value); return *this;}
52 inline GetImportJobsRequest& WithApplicationId(Aws::String&& value) { SetApplicationId(std::move(value)); return *this;}
53 inline GetImportJobsRequest& WithApplicationId(const char* value) { SetApplicationId(value); return *this;}
55
57
62 inline const Aws::String& GetPageSize() const{ return m_pageSize; }
63 inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
64 inline void SetPageSize(const Aws::String& value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
65 inline void SetPageSize(Aws::String&& value) { m_pageSizeHasBeenSet = true; m_pageSize = std::move(value); }
66 inline void SetPageSize(const char* value) { m_pageSizeHasBeenSet = true; m_pageSize.assign(value); }
67 inline GetImportJobsRequest& WithPageSize(const Aws::String& value) { SetPageSize(value); return *this;}
68 inline GetImportJobsRequest& WithPageSize(Aws::String&& value) { SetPageSize(std::move(value)); return *this;}
69 inline GetImportJobsRequest& WithPageSize(const char* value) { SetPageSize(value); return *this;}
71
73
77 inline const Aws::String& GetToken() const{ return m_token; }
78 inline bool TokenHasBeenSet() const { return m_tokenHasBeenSet; }
79 inline void SetToken(const Aws::String& value) { m_tokenHasBeenSet = true; m_token = value; }
80 inline void SetToken(Aws::String&& value) { m_tokenHasBeenSet = true; m_token = std::move(value); }
81 inline void SetToken(const char* value) { m_tokenHasBeenSet = true; m_token.assign(value); }
82 inline GetImportJobsRequest& WithToken(const Aws::String& value) { SetToken(value); return *this;}
83 inline GetImportJobsRequest& WithToken(Aws::String&& value) { SetToken(std::move(value)); return *this;}
84 inline GetImportJobsRequest& WithToken(const char* value) { SetToken(value); return *this;}
86 private:
87
88 Aws::String m_applicationId;
89 bool m_applicationIdHasBeenSet = false;
90
91 Aws::String m_pageSize;
92 bool m_pageSizeHasBeenSet = false;
93
94 Aws::String m_token;
95 bool m_tokenHasBeenSet = false;
96 };
97
98} // namespace Model
99} // namespace Pinpoint
100} // namespace Aws
GetImportJobsRequest & WithToken(const Aws::String &value)
AWS_PINPOINT_API Aws::String SerializePayload() const override
AWS_PINPOINT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetImportJobsRequest & WithToken(Aws::String &&value)
GetImportJobsRequest & WithApplicationId(Aws::String &&value)
GetImportJobsRequest & WithPageSize(const Aws::String &value)
void SetApplicationId(const Aws::String &value)
GetImportJobsRequest & WithApplicationId(const Aws::String &value)
GetImportJobsRequest & WithPageSize(const char *value)
GetImportJobsRequest & WithToken(const char *value)
GetImportJobsRequest & WithPageSize(Aws::String &&value)
GetImportJobsRequest & WithApplicationId(const char *value)
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String