AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListLayersRequest.h
1
6#pragma once
7#include <aws/lambda/Lambda_EXPORTS.h>
8#include <aws/lambda/LambdaRequest.h>
9#include <aws/lambda/model/Runtime.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/lambda/model/Architecture.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Http
17{
18 class URI;
19} //namespace Http
20namespace Lambda
21{
22namespace Model
23{
24
28 {
29 public:
30 AWS_LAMBDA_API ListLayersRequest();
31
32 // Service request name is the Operation name which will send this request out,
33 // each operation should has unique request name, so that we can get operation's name from this request.
34 // Note: this is not true for response, multiple operations may have the same response name,
35 // so we can not get operation's name from response.
36 inline virtual const char* GetServiceRequestName() const override { return "ListLayers"; }
37
38 AWS_LAMBDA_API Aws::String SerializePayload() const override;
39
40 AWS_LAMBDA_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
41
42
44
53 inline const Runtime& GetCompatibleRuntime() const{ return m_compatibleRuntime; }
54 inline bool CompatibleRuntimeHasBeenSet() const { return m_compatibleRuntimeHasBeenSet; }
55 inline void SetCompatibleRuntime(const Runtime& value) { m_compatibleRuntimeHasBeenSet = true; m_compatibleRuntime = value; }
56 inline void SetCompatibleRuntime(Runtime&& value) { m_compatibleRuntimeHasBeenSet = true; m_compatibleRuntime = std::move(value); }
57 inline ListLayersRequest& WithCompatibleRuntime(const Runtime& value) { SetCompatibleRuntime(value); return *this;}
58 inline ListLayersRequest& WithCompatibleRuntime(Runtime&& value) { SetCompatibleRuntime(std::move(value)); return *this;}
60
62
65 inline const Aws::String& GetMarker() const{ return m_marker; }
66 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
67 inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
68 inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
69 inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
70 inline ListLayersRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
71 inline ListLayersRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
72 inline ListLayersRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
74
76
79 inline int GetMaxItems() const{ return m_maxItems; }
80 inline bool MaxItemsHasBeenSet() const { return m_maxItemsHasBeenSet; }
81 inline void SetMaxItems(int value) { m_maxItemsHasBeenSet = true; m_maxItems = value; }
82 inline ListLayersRequest& WithMaxItems(int value) { SetMaxItems(value); return *this;}
84
86
91 inline const Architecture& GetCompatibleArchitecture() const{ return m_compatibleArchitecture; }
92 inline bool CompatibleArchitectureHasBeenSet() const { return m_compatibleArchitectureHasBeenSet; }
93 inline void SetCompatibleArchitecture(const Architecture& value) { m_compatibleArchitectureHasBeenSet = true; m_compatibleArchitecture = value; }
94 inline void SetCompatibleArchitecture(Architecture&& value) { m_compatibleArchitectureHasBeenSet = true; m_compatibleArchitecture = std::move(value); }
96 inline ListLayersRequest& WithCompatibleArchitecture(Architecture&& value) { SetCompatibleArchitecture(std::move(value)); return *this;}
98 private:
99
100 Runtime m_compatibleRuntime;
101 bool m_compatibleRuntimeHasBeenSet = false;
102
103 Aws::String m_marker;
104 bool m_markerHasBeenSet = false;
105
106 int m_maxItems;
107 bool m_maxItemsHasBeenSet = false;
108
109 Architecture m_compatibleArchitecture;
110 bool m_compatibleArchitectureHasBeenSet = false;
111 };
112
113} // namespace Model
114} // namespace Lambda
115} // namespace Aws
const Runtime & GetCompatibleRuntime() const
ListLayersRequest & WithCompatibleArchitecture(Architecture &&value)
ListLayersRequest & WithCompatibleRuntime(const Runtime &value)
virtual const char * GetServiceRequestName() const override
ListLayersRequest & WithCompatibleRuntime(Runtime &&value)
AWS_LAMBDA_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListLayersRequest & WithMaxItems(int value)
AWS_LAMBDA_API Aws::String SerializePayload() const override
ListLayersRequest & WithMarker(const char *value)
ListLayersRequest & WithMarker(const Aws::String &value)
ListLayersRequest & WithCompatibleArchitecture(const Architecture &value)
const Architecture & GetCompatibleArchitecture() const
const Aws::String & GetMarker() const
ListLayersRequest & WithMarker(Aws::String &&value)
void SetCompatibleArchitecture(Architecture &&value)
void SetCompatibleArchitecture(const Architecture &value)
void SetMarker(const Aws::String &value)
void SetCompatibleRuntime(const Runtime &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String