AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
EncryptionEntities.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/EncryptionEntity.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 EncryptionEntities();
36 AWS_CLOUDFRONT_API EncryptionEntities(const Aws::Utils::Xml::XmlNode& xmlNode);
37 AWS_CLOUDFRONT_API EncryptionEntities& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
38
39 AWS_CLOUDFRONT_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
40
41
43
47 inline int GetQuantity() const{ return m_quantity; }
48 inline bool QuantityHasBeenSet() const { return m_quantityHasBeenSet; }
49 inline void SetQuantity(int value) { m_quantityHasBeenSet = true; m_quantity = value; }
50 inline EncryptionEntities& WithQuantity(int value) { SetQuantity(value); return *this;}
52
54
58 inline const Aws::Vector<EncryptionEntity>& GetItems() const{ return m_items; }
59 inline bool ItemsHasBeenSet() const { return m_itemsHasBeenSet; }
60 inline void SetItems(const Aws::Vector<EncryptionEntity>& value) { m_itemsHasBeenSet = true; m_items = value; }
61 inline void SetItems(Aws::Vector<EncryptionEntity>&& value) { m_itemsHasBeenSet = true; m_items = std::move(value); }
62 inline EncryptionEntities& WithItems(const Aws::Vector<EncryptionEntity>& value) { SetItems(value); return *this;}
63 inline EncryptionEntities& WithItems(Aws::Vector<EncryptionEntity>&& value) { SetItems(std::move(value)); return *this;}
64 inline EncryptionEntities& AddItems(const EncryptionEntity& value) { m_itemsHasBeenSet = true; m_items.push_back(value); return *this; }
65 inline EncryptionEntities& AddItems(EncryptionEntity&& value) { m_itemsHasBeenSet = true; m_items.push_back(std::move(value)); return *this; }
67 private:
68
69 int m_quantity;
70 bool m_quantityHasBeenSet = false;
71
73 bool m_itemsHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace CloudFront
78} // namespace Aws
void SetItems(Aws::Vector< EncryptionEntity > &&value)
const Aws::Vector< EncryptionEntity > & GetItems() const
AWS_CLOUDFRONT_API EncryptionEntities & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
EncryptionEntities & WithItems(Aws::Vector< EncryptionEntity > &&value)
EncryptionEntities & AddItems(EncryptionEntity &&value)
EncryptionEntities & AddItems(const EncryptionEntity &value)
AWS_CLOUDFRONT_API EncryptionEntities(const Aws::Utils::Xml::XmlNode &xmlNode)
EncryptionEntities & WithItems(const Aws::Vector< EncryptionEntity > &value)
void SetItems(const Aws::Vector< EncryptionEntity > &value)
AWS_CLOUDFRONT_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
EncryptionEntities & WithQuantity(int value)
std::vector< T, Aws::Allocator< T > > Vector