AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListAliasesRequest.h
1
6#pragma once
7#include <aws/lambda/Lambda_EXPORTS.h>
8#include <aws/lambda/LambdaRequest.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 Lambda
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_LAMBDA_API ListAliasesRequest();
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 "ListAliases"; }
35
36 AWS_LAMBDA_API Aws::String SerializePayload() const override;
37
38 AWS_LAMBDA_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
52 inline const Aws::String& GetFunctionName() const{ return m_functionName; }
53 inline bool FunctionNameHasBeenSet() const { return m_functionNameHasBeenSet; }
54 inline void SetFunctionName(const Aws::String& value) { m_functionNameHasBeenSet = true; m_functionName = value; }
55 inline void SetFunctionName(Aws::String&& value) { m_functionNameHasBeenSet = true; m_functionName = std::move(value); }
56 inline void SetFunctionName(const char* value) { m_functionNameHasBeenSet = true; m_functionName.assign(value); }
57 inline ListAliasesRequest& WithFunctionName(const Aws::String& value) { SetFunctionName(value); return *this;}
58 inline ListAliasesRequest& WithFunctionName(Aws::String&& value) { SetFunctionName(std::move(value)); return *this;}
59 inline ListAliasesRequest& WithFunctionName(const char* value) { SetFunctionName(value); return *this;}
61
63
66 inline const Aws::String& GetFunctionVersion() const{ return m_functionVersion; }
67 inline bool FunctionVersionHasBeenSet() const { return m_functionVersionHasBeenSet; }
68 inline void SetFunctionVersion(const Aws::String& value) { m_functionVersionHasBeenSet = true; m_functionVersion = value; }
69 inline void SetFunctionVersion(Aws::String&& value) { m_functionVersionHasBeenSet = true; m_functionVersion = std::move(value); }
70 inline void SetFunctionVersion(const char* value) { m_functionVersionHasBeenSet = true; m_functionVersion.assign(value); }
71 inline ListAliasesRequest& WithFunctionVersion(const Aws::String& value) { SetFunctionVersion(value); return *this;}
72 inline ListAliasesRequest& WithFunctionVersion(Aws::String&& value) { SetFunctionVersion(std::move(value)); return *this;}
73 inline ListAliasesRequest& WithFunctionVersion(const char* value) { SetFunctionVersion(value); return *this;}
75
77
81 inline const Aws::String& GetMarker() const{ return m_marker; }
82 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
83 inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
84 inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
85 inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
86 inline ListAliasesRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
87 inline ListAliasesRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
88 inline ListAliasesRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
90
92
95 inline int GetMaxItems() const{ return m_maxItems; }
96 inline bool MaxItemsHasBeenSet() const { return m_maxItemsHasBeenSet; }
97 inline void SetMaxItems(int value) { m_maxItemsHasBeenSet = true; m_maxItems = value; }
98 inline ListAliasesRequest& WithMaxItems(int value) { SetMaxItems(value); return *this;}
100 private:
101
102 Aws::String m_functionName;
103 bool m_functionNameHasBeenSet = false;
104
105 Aws::String m_functionVersion;
106 bool m_functionVersionHasBeenSet = false;
107
108 Aws::String m_marker;
109 bool m_markerHasBeenSet = false;
110
111 int m_maxItems;
112 bool m_maxItemsHasBeenSet = false;
113 };
114
115} // namespace Model
116} // namespace Lambda
117} // namespace Aws
const Aws::String & GetMarker() const
void SetFunctionName(const Aws::String &value)
ListAliasesRequest & WithFunctionName(const char *value)
void SetFunctionVersion(const Aws::String &value)
ListAliasesRequest & WithMaxItems(int value)
void SetFunctionVersion(Aws::String &&value)
const Aws::String & GetFunctionName() const
void SetFunctionName(Aws::String &&value)
AWS_LAMBDA_API Aws::String SerializePayload() const override
ListAliasesRequest & WithMarker(Aws::String &&value)
ListAliasesRequest & WithMarker(const Aws::String &value)
AWS_LAMBDA_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
const Aws::String & GetFunctionVersion() const
ListAliasesRequest & WithFunctionVersion(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
ListAliasesRequest & WithFunctionVersion(const char *value)
ListAliasesRequest & WithMarker(const char *value)
ListAliasesRequest & WithFunctionName(Aws::String &&value)
ListAliasesRequest & WithFunctionVersion(const Aws::String &value)
ListAliasesRequest & WithFunctionName(const Aws::String &value)
void SetMarker(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String