/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A complex type that contains information about the objects that you want to
* invalidate. For more information, see Specifying
* the Objects to Invalidate in the Amazon CloudFront Developer
* Guide.See Also:
AWS
* API Reference
The number of invalidation paths specified for the objects that you want to * invalidate.
*/ inline int GetQuantity() const{ return m_quantity; } /** *The number of invalidation paths specified for the objects that you want to * invalidate.
*/ inline bool QuantityHasBeenSet() const { return m_quantityHasBeenSet; } /** *The number of invalidation paths specified for the objects that you want to * invalidate.
*/ inline void SetQuantity(int value) { m_quantityHasBeenSet = true; m_quantity = value; } /** *The number of invalidation paths specified for the objects that you want to * invalidate.
*/ inline Paths& WithQuantity(int value) { SetQuantity(value); return *this;} /** *A complex type that contains a list of the paths that you want to * invalidate.
*/ inline const Aws::VectorA complex type that contains a list of the paths that you want to * invalidate.
*/ inline bool ItemsHasBeenSet() const { return m_itemsHasBeenSet; } /** *A complex type that contains a list of the paths that you want to * invalidate.
*/ inline void SetItems(const Aws::VectorA complex type that contains a list of the paths that you want to * invalidate.
*/ inline void SetItems(Aws::VectorA complex type that contains a list of the paths that you want to * invalidate.
*/ inline Paths& WithItems(const Aws::VectorA complex type that contains a list of the paths that you want to * invalidate.
*/ inline Paths& WithItems(Aws::VectorA complex type that contains a list of the paths that you want to * invalidate.
*/ inline Paths& AddItems(const Aws::String& value) { m_itemsHasBeenSet = true; m_items.push_back(value); return *this; } /** *A complex type that contains a list of the paths that you want to * invalidate.
*/ inline Paths& AddItems(Aws::String&& value) { m_itemsHasBeenSet = true; m_items.push_back(std::move(value)); return *this; } /** *A complex type that contains a list of the paths that you want to * invalidate.
*/ inline Paths& AddItems(const char* value) { m_itemsHasBeenSet = true; m_items.push_back(value); return *this; } private: int m_quantity; bool m_quantityHasBeenSet = false; Aws::Vector