AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CacheBehaviors.h
1
6#pragma once
7#include <aws/cloudfront/CloudFront_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/cloudfront/model/CacheBehavior.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Xml
17{
18 class XmlNode;
19} // namespace Xml
20} // namespace Utils
21namespace CloudFront
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_CLOUDFRONT_API CacheBehaviors();
36 AWS_CLOUDFRONT_API CacheBehaviors(const Aws::Utils::Xml::XmlNode& xmlNode);
37 AWS_CLOUDFRONT_API CacheBehaviors& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
38
39 AWS_CLOUDFRONT_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
40
41
43
46 inline int GetQuantity() const{ return m_quantity; }
47 inline bool QuantityHasBeenSet() const { return m_quantityHasBeenSet; }
48 inline void SetQuantity(int value) { m_quantityHasBeenSet = true; m_quantity = value; }
49 inline CacheBehaviors& WithQuantity(int value) { SetQuantity(value); return *this;}
51
53
57 inline const Aws::Vector<CacheBehavior>& GetItems() const{ return m_items; }
58 inline bool ItemsHasBeenSet() const { return m_itemsHasBeenSet; }
59 inline void SetItems(const Aws::Vector<CacheBehavior>& value) { m_itemsHasBeenSet = true; m_items = value; }
60 inline void SetItems(Aws::Vector<CacheBehavior>&& value) { m_itemsHasBeenSet = true; m_items = std::move(value); }
61 inline CacheBehaviors& WithItems(const Aws::Vector<CacheBehavior>& value) { SetItems(value); return *this;}
62 inline CacheBehaviors& WithItems(Aws::Vector<CacheBehavior>&& value) { SetItems(std::move(value)); return *this;}
63 inline CacheBehaviors& AddItems(const CacheBehavior& value) { m_itemsHasBeenSet = true; m_items.push_back(value); return *this; }
64 inline CacheBehaviors& AddItems(CacheBehavior&& value) { m_itemsHasBeenSet = true; m_items.push_back(std::move(value)); return *this; }
66 private:
67
68 int m_quantity;
69 bool m_quantityHasBeenSet = false;
70
72 bool m_itemsHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace CloudFront
77} // namespace Aws
AWS_CLOUDFRONT_API CacheBehaviors & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetItems(const Aws::Vector< CacheBehavior > &value)
CacheBehaviors & WithQuantity(int value)
CacheBehaviors & WithItems(const Aws::Vector< CacheBehavior > &value)
CacheBehaviors & AddItems(const CacheBehavior &value)
AWS_CLOUDFRONT_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
CacheBehaviors & WithItems(Aws::Vector< CacheBehavior > &&value)
void SetItems(Aws::Vector< CacheBehavior > &&value)
CacheBehaviors & AddItems(CacheBehavior &&value)
const Aws::Vector< CacheBehavior > & GetItems() const
AWS_CLOUDFRONT_API CacheBehaviors(const Aws::Utils::Xml::XmlNode &xmlNode)
std::vector< T, Aws::Allocator< T > > Vector