AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
CachePolicyList.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/CachePolicySummary.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 CachePolicyList() = default;
36 AWS_CLOUDFRONT_API CachePolicyList(const Aws::Utils::Xml::XmlNode& xmlNode);
37 AWS_CLOUDFRONT_API CachePolicyList& 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 template<typename NextMarkerT = Aws::String>
52 void SetNextMarker(NextMarkerT&& value) { m_nextMarkerHasBeenSet = true; m_nextMarker = std::forward<NextMarkerT>(value); }
53 template<typename NextMarkerT = Aws::String>
54 CachePolicyList& WithNextMarker(NextMarkerT&& value) { SetNextMarker(std::forward<NextMarkerT>(value)); return *this;}
56
58
61 inline int GetMaxItems() const { return m_maxItems; }
62 inline bool MaxItemsHasBeenSet() const { return m_maxItemsHasBeenSet; }
63 inline void SetMaxItems(int value) { m_maxItemsHasBeenSet = true; m_maxItems = value; }
64 inline CachePolicyList& WithMaxItems(int value) { SetMaxItems(value); return *this;}
66
68
71 inline int GetQuantity() const { return m_quantity; }
72 inline bool QuantityHasBeenSet() const { return m_quantityHasBeenSet; }
73 inline void SetQuantity(int value) { m_quantityHasBeenSet = true; m_quantity = value; }
74 inline CachePolicyList& WithQuantity(int value) { SetQuantity(value); return *this;}
76
78
81 inline const Aws::Vector<CachePolicySummary>& GetItems() const { return m_items; }
82 inline bool ItemsHasBeenSet() const { return m_itemsHasBeenSet; }
83 template<typename ItemsT = Aws::Vector<CachePolicySummary>>
84 void SetItems(ItemsT&& value) { m_itemsHasBeenSet = true; m_items = std::forward<ItemsT>(value); }
85 template<typename ItemsT = Aws::Vector<CachePolicySummary>>
86 CachePolicyList& WithItems(ItemsT&& value) { SetItems(std::forward<ItemsT>(value)); return *this;}
87 template<typename ItemsT = CachePolicySummary>
88 CachePolicyList& AddItems(ItemsT&& value) { m_itemsHasBeenSet = true; m_items.emplace_back(std::forward<ItemsT>(value)); return *this; }
90 private:
91
92 Aws::String m_nextMarker;
93 bool m_nextMarkerHasBeenSet = false;
94
95 int m_maxItems{0};
96 bool m_maxItemsHasBeenSet = false;
97
98 int m_quantity{0};
99 bool m_quantityHasBeenSet = false;
100
102 bool m_itemsHasBeenSet = false;
103 };
104
105} // namespace Model
106} // namespace CloudFront
107} // namespace Aws
CachePolicyList & WithMaxItems(int value)
const Aws::Vector< CachePolicySummary > & GetItems() const
AWS_CLOUDFRONT_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
AWS_CLOUDFRONT_API CachePolicyList()=default
void SetNextMarker(NextMarkerT &&value)
const Aws::String & GetNextMarker() const
AWS_CLOUDFRONT_API CachePolicyList(const Aws::Utils::Xml::XmlNode &xmlNode)
CachePolicyList & WithItems(ItemsT &&value)
CachePolicyList & WithQuantity(int value)
CachePolicyList & AddItems(ItemsT &&value)
CachePolicyList & WithNextMarker(NextMarkerT &&value)
AWS_CLOUDFRONT_API CachePolicyList & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector