/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Complex data type for field-level encryption profiles that includes all of
* the encryption entities.See Also:
AWS
* API Reference
Number of field pattern items in a field-level encryption content * type-profile mapping.
*/ inline int GetQuantity() const{ return m_quantity; } /** *Number of field pattern items in a field-level encryption content * type-profile mapping.
*/ inline bool QuantityHasBeenSet() const { return m_quantityHasBeenSet; } /** *Number of field pattern items in a field-level encryption content * type-profile mapping.
*/ inline void SetQuantity(int value) { m_quantityHasBeenSet = true; m_quantity = value; } /** *Number of field pattern items in a field-level encryption content * type-profile mapping.
*/ inline EncryptionEntities& WithQuantity(int value) { SetQuantity(value); return *this;} /** *An array of field patterns in a field-level encryption content type-profile * mapping.
*/ inline const Aws::VectorAn array of field patterns in a field-level encryption content type-profile * mapping.
*/ inline bool ItemsHasBeenSet() const { return m_itemsHasBeenSet; } /** *An array of field patterns in a field-level encryption content type-profile * mapping.
*/ inline void SetItems(const Aws::VectorAn array of field patterns in a field-level encryption content type-profile * mapping.
*/ inline void SetItems(Aws::VectorAn array of field patterns in a field-level encryption content type-profile * mapping.
*/ inline EncryptionEntities& WithItems(const Aws::VectorAn array of field patterns in a field-level encryption content type-profile * mapping.
*/ inline EncryptionEntities& WithItems(Aws::VectorAn array of field patterns in a field-level encryption content type-profile * mapping.
*/ inline EncryptionEntities& AddItems(const EncryptionEntity& value) { m_itemsHasBeenSet = true; m_items.push_back(value); return *this; } /** *An array of field patterns in a field-level encryption content type-profile * mapping.
*/ inline EncryptionEntities& AddItems(EncryptionEntity&& value) { m_itemsHasBeenSet = true; m_items.push_back(std::move(value)); return *this; } private: int m_quantity; bool m_quantityHasBeenSet = false; Aws::Vector