AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
FunctionList.h
1
6#pragma once
7#include <aws/cloudfront/CloudFront_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/cloudfront/model/FunctionSummary.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Xml
18{
19 class XmlNode;
20} // namespace Xml
21} // namespace Utils
22namespace CloudFront
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_CLOUDFRONT_API FunctionList();
36 AWS_CLOUDFRONT_API FunctionList(const Aws::Utils::Xml::XmlNode& xmlNode);
37 AWS_CLOUDFRONT_API FunctionList& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
38
39 AWS_CLOUDFRONT_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
40
41
43
49 inline const Aws::String& GetNextMarker() const{ return m_nextMarker; }
50 inline bool NextMarkerHasBeenSet() const { return m_nextMarkerHasBeenSet; }
51 inline void SetNextMarker(const Aws::String& value) { m_nextMarkerHasBeenSet = true; m_nextMarker = value; }
52 inline void SetNextMarker(Aws::String&& value) { m_nextMarkerHasBeenSet = true; m_nextMarker = std::move(value); }
53 inline void SetNextMarker(const char* value) { m_nextMarkerHasBeenSet = true; m_nextMarker.assign(value); }
54 inline FunctionList& WithNextMarker(const Aws::String& value) { SetNextMarker(value); return *this;}
55 inline FunctionList& WithNextMarker(Aws::String&& value) { SetNextMarker(std::move(value)); return *this;}
56 inline FunctionList& WithNextMarker(const char* value) { SetNextMarker(value); return *this;}
58
60
63 inline int GetMaxItems() const{ return m_maxItems; }
64 inline bool MaxItemsHasBeenSet() const { return m_maxItemsHasBeenSet; }
65 inline void SetMaxItems(int value) { m_maxItemsHasBeenSet = true; m_maxItems = value; }
66 inline FunctionList& WithMaxItems(int value) { SetMaxItems(value); return *this;}
68
70
73 inline int GetQuantity() const{ return m_quantity; }
74 inline bool QuantityHasBeenSet() const { return m_quantityHasBeenSet; }
75 inline void SetQuantity(int value) { m_quantityHasBeenSet = true; m_quantity = value; }
76 inline FunctionList& WithQuantity(int value) { SetQuantity(value); return *this;}
78
80
83 inline const Aws::Vector<FunctionSummary>& GetItems() const{ return m_items; }
84 inline bool ItemsHasBeenSet() const { return m_itemsHasBeenSet; }
85 inline void SetItems(const Aws::Vector<FunctionSummary>& value) { m_itemsHasBeenSet = true; m_items = value; }
86 inline void SetItems(Aws::Vector<FunctionSummary>&& value) { m_itemsHasBeenSet = true; m_items = std::move(value); }
87 inline FunctionList& WithItems(const Aws::Vector<FunctionSummary>& value) { SetItems(value); return *this;}
88 inline FunctionList& WithItems(Aws::Vector<FunctionSummary>&& value) { SetItems(std::move(value)); return *this;}
89 inline FunctionList& AddItems(const FunctionSummary& value) { m_itemsHasBeenSet = true; m_items.push_back(value); return *this; }
90 inline FunctionList& AddItems(FunctionSummary&& value) { m_itemsHasBeenSet = true; m_items.push_back(std::move(value)); return *this; }
92 private:
93
94 Aws::String m_nextMarker;
95 bool m_nextMarkerHasBeenSet = false;
96
97 int m_maxItems;
98 bool m_maxItemsHasBeenSet = false;
99
100 int m_quantity;
101 bool m_quantityHasBeenSet = false;
102
104 bool m_itemsHasBeenSet = false;
105 };
106
107} // namespace Model
108} // namespace CloudFront
109} // namespace Aws
void SetNextMarker(Aws::String &&value)
const Aws::Vector< FunctionSummary > & GetItems() const
AWS_CLOUDFRONT_API FunctionList & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetNextMarker(const char *value)
FunctionList & WithItems(Aws::Vector< FunctionSummary > &&value)
AWS_CLOUDFRONT_API FunctionList(const Aws::Utils::Xml::XmlNode &xmlNode)
FunctionList & WithNextMarker(Aws::String &&value)
FunctionList & AddItems(FunctionSummary &&value)
FunctionList & AddItems(const FunctionSummary &value)
FunctionList & WithNextMarker(const Aws::String &value)
FunctionList & WithNextMarker(const char *value)
FunctionList & WithMaxItems(int value)
FunctionList & WithItems(const Aws::Vector< FunctionSummary > &value)
const Aws::String & GetNextMarker() const
AWS_CLOUDFRONT_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
void SetItems(const Aws::Vector< FunctionSummary > &value)
void SetItems(Aws::Vector< FunctionSummary > &&value)
FunctionList & WithQuantity(int value)
void SetNextMarker(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector