AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListConfigurationSetsRequest.h
1
6#pragma once
7#include <aws/email/SES_EXPORTS.h>
8#include <aws/email/SESRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace SES
15{
16namespace Model
17{
18
29 {
30 public:
32
33 // Service request name is the Operation name which will send this request out,
34 // each operation should has unique request name, so that we can get operation's name from this request.
35 // Note: this is not true for response, multiple operations may have the same response name,
36 // so we can not get operation's name from response.
37 inline virtual const char* GetServiceRequestName() const override { return "ListConfigurationSets"; }
38
39 AWS_SES_API Aws::String SerializePayload() const override;
40
41 protected:
42 AWS_SES_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
43
44 public:
45
47
52 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
53 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
54 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
55 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
56 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
57 inline ListConfigurationSetsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
58 inline ListConfigurationSetsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
59 inline ListConfigurationSetsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
61
63
66 inline int GetMaxItems() const{ return m_maxItems; }
67 inline bool MaxItemsHasBeenSet() const { return m_maxItemsHasBeenSet; }
68 inline void SetMaxItems(int value) { m_maxItemsHasBeenSet = true; m_maxItems = value; }
69 inline ListConfigurationSetsRequest& WithMaxItems(int value) { SetMaxItems(value); return *this;}
71 private:
72
73 Aws::String m_nextToken;
74 bool m_nextTokenHasBeenSet = false;
75
76 int m_maxItems;
77 bool m_maxItemsHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace SES
82} // namespace Aws
ListConfigurationSetsRequest & WithNextToken(const char *value)
virtual const char * GetServiceRequestName() const override
AWS_SES_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
ListConfigurationSetsRequest & WithNextToken(const Aws::String &value)
AWS_SES_API Aws::String SerializePayload() const override
ListConfigurationSetsRequest & WithMaxItems(int value)
ListConfigurationSetsRequest & WithNextToken(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String