AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListConfigurationProfilesRequest.h
1
6#pragma once
7#include <aws/appconfig/AppConfig_EXPORTS.h>
8#include <aws/appconfig/AppConfigRequest.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 AppConfig
19{
20namespace Model
21{
22
26 {
27 public:
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 "ListConfigurationProfiles"; }
35
36 AWS_APPCONFIG_API Aws::String SerializePayload() const override;
37
38 AWS_APPCONFIG_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
45 inline const Aws::String& GetApplicationId() const{ return m_applicationId; }
46 inline bool ApplicationIdHasBeenSet() const { return m_applicationIdHasBeenSet; }
47 inline void SetApplicationId(const Aws::String& value) { m_applicationIdHasBeenSet = true; m_applicationId = value; }
48 inline void SetApplicationId(Aws::String&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::move(value); }
49 inline void SetApplicationId(const char* value) { m_applicationIdHasBeenSet = true; m_applicationId.assign(value); }
51 inline ListConfigurationProfilesRequest& WithApplicationId(Aws::String&& value) { SetApplicationId(std::move(value)); return *this;}
52 inline ListConfigurationProfilesRequest& WithApplicationId(const char* value) { SetApplicationId(value); return *this;}
54
56
61 inline int GetMaxResults() const{ return m_maxResults; }
62 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
63 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
64 inline ListConfigurationProfilesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
66
68
71 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
72 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
73 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
74 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
75 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
76 inline ListConfigurationProfilesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
77 inline ListConfigurationProfilesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
78 inline ListConfigurationProfilesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
80
82
86 inline const Aws::String& GetType() const{ return m_type; }
87 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
88 inline void SetType(const Aws::String& value) { m_typeHasBeenSet = true; m_type = value; }
89 inline void SetType(Aws::String&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
90 inline void SetType(const char* value) { m_typeHasBeenSet = true; m_type.assign(value); }
91 inline ListConfigurationProfilesRequest& WithType(const Aws::String& value) { SetType(value); return *this;}
92 inline ListConfigurationProfilesRequest& WithType(Aws::String&& value) { SetType(std::move(value)); return *this;}
93 inline ListConfigurationProfilesRequest& WithType(const char* value) { SetType(value); return *this;}
95 private:
96
97 Aws::String m_applicationId;
98 bool m_applicationIdHasBeenSet = false;
99
100 int m_maxResults;
101 bool m_maxResultsHasBeenSet = false;
102
103 Aws::String m_nextToken;
104 bool m_nextTokenHasBeenSet = false;
105
106 Aws::String m_type;
107 bool m_typeHasBeenSet = false;
108 };
109
110} // namespace Model
111} // namespace AppConfig
112} // namespace Aws
ListConfigurationProfilesRequest & WithNextToken(Aws::String &&value)
ListConfigurationProfilesRequest & WithNextToken(const char *value)
ListConfigurationProfilesRequest & WithApplicationId(const Aws::String &value)
ListConfigurationProfilesRequest & WithType(const Aws::String &value)
ListConfigurationProfilesRequest & WithNextToken(const Aws::String &value)
AWS_APPCONFIG_API Aws::String SerializePayload() const override
ListConfigurationProfilesRequest & WithType(Aws::String &&value)
AWS_APPCONFIG_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListConfigurationProfilesRequest & WithApplicationId(const char *value)
ListConfigurationProfilesRequest & WithApplicationId(Aws::String &&value)
ListConfigurationProfilesRequest & WithType(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String