This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-cloudfront/include/aws/cloudfront/model/EncryptionEntities.h

127 lines
3.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/cloudfront/CloudFront_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/cloudfront/model/EncryptionEntity.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace CloudFront
{
namespace Model
{
/**
* <p>Complex data type for field-level encryption profiles that includes all of
* the encryption entities. </p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/EncryptionEntities">AWS
* API Reference</a></p>
*/
class AWS_CLOUDFRONT_API EncryptionEntities
{
public:
EncryptionEntities();
EncryptionEntities(const Aws::Utils::Xml::XmlNode& xmlNode);
EncryptionEntities& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
/**
* <p>Number of field pattern items in a field-level encryption content
* type-profile mapping. </p>
*/
inline int GetQuantity() const{ return m_quantity; }
/**
* <p>Number of field pattern items in a field-level encryption content
* type-profile mapping. </p>
*/
inline bool QuantityHasBeenSet() const { return m_quantityHasBeenSet; }
/**
* <p>Number of field pattern items in a field-level encryption content
* type-profile mapping. </p>
*/
inline void SetQuantity(int value) { m_quantityHasBeenSet = true; m_quantity = value; }
/**
* <p>Number of field pattern items in a field-level encryption content
* type-profile mapping. </p>
*/
inline EncryptionEntities& WithQuantity(int value) { SetQuantity(value); return *this;}
/**
* <p>An array of field patterns in a field-level encryption content type-profile
* mapping. </p>
*/
inline const Aws::Vector<EncryptionEntity>& GetItems() const{ return m_items; }
/**
* <p>An array of field patterns in a field-level encryption content type-profile
* mapping. </p>
*/
inline bool ItemsHasBeenSet() const { return m_itemsHasBeenSet; }
/**
* <p>An array of field patterns in a field-level encryption content type-profile
* mapping. </p>
*/
inline void SetItems(const Aws::Vector<EncryptionEntity>& value) { m_itemsHasBeenSet = true; m_items = value; }
/**
* <p>An array of field patterns in a field-level encryption content type-profile
* mapping. </p>
*/
inline void SetItems(Aws::Vector<EncryptionEntity>&& value) { m_itemsHasBeenSet = true; m_items = std::move(value); }
/**
* <p>An array of field patterns in a field-level encryption content type-profile
* mapping. </p>
*/
inline EncryptionEntities& WithItems(const Aws::Vector<EncryptionEntity>& value) { SetItems(value); return *this;}
/**
* <p>An array of field patterns in a field-level encryption content type-profile
* mapping. </p>
*/
inline EncryptionEntities& WithItems(Aws::Vector<EncryptionEntity>&& value) { SetItems(std::move(value)); return *this;}
/**
* <p>An array of field patterns in a field-level encryption content type-profile
* mapping. </p>
*/
inline EncryptionEntities& AddItems(const EncryptionEntity& value) { m_itemsHasBeenSet = true; m_items.push_back(value); return *this; }
/**
* <p>An array of field patterns in a field-level encryption content type-profile
* mapping. </p>
*/
inline EncryptionEntities& AddItems(EncryptionEntity&& value) { m_itemsHasBeenSet = true; m_items.push_back(std::move(value)); return *this; }
private:
int m_quantity;
bool m_quantityHasBeenSet;
Aws::Vector<EncryptionEntity> m_items;
bool m_itemsHasBeenSet;
};
} // namespace Model
} // namespace CloudFront
} // namespace Aws