/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A complex data type that includes the field patterns to match for field-level
* encryption.See Also:
AWS
* API Reference
The number of field-level encryption field patterns.
*/ inline int GetQuantity() const{ return m_quantity; } /** *The number of field-level encryption field patterns.
*/ inline bool QuantityHasBeenSet() const { return m_quantityHasBeenSet; } /** *The number of field-level encryption field patterns.
*/ inline void SetQuantity(int value) { m_quantityHasBeenSet = true; m_quantity = value; } /** *The number of field-level encryption field patterns.
*/ inline FieldPatterns& WithQuantity(int value) { SetQuantity(value); return *this;} /** *An array of the field-level encryption field patterns.
*/ inline const Aws::VectorAn array of the field-level encryption field patterns.
*/ inline bool ItemsHasBeenSet() const { return m_itemsHasBeenSet; } /** *An array of the field-level encryption field patterns.
*/ inline void SetItems(const Aws::VectorAn array of the field-level encryption field patterns.
*/ inline void SetItems(Aws::VectorAn array of the field-level encryption field patterns.
*/ inline FieldPatterns& WithItems(const Aws::VectorAn array of the field-level encryption field patterns.
*/ inline FieldPatterns& WithItems(Aws::VectorAn array of the field-level encryption field patterns.
*/ inline FieldPatterns& AddItems(const Aws::String& value) { m_itemsHasBeenSet = true; m_items.push_back(value); return *this; } /** *An array of the field-level encryption field patterns.
*/ inline FieldPatterns& AddItems(Aws::String&& value) { m_itemsHasBeenSet = true; m_items.push_back(std::move(value)); return *this; } /** *An array of the field-level encryption field patterns.
*/ inline FieldPatterns& AddItems(const char* value) { m_itemsHasBeenSet = true; m_items.push_back(value); return *this; } private: int m_quantity; bool m_quantityHasBeenSet; Aws::Vector