/**
* 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 CNAMEs (alternate domain
* names), if any, for this distribution.See Also:
AWS
* API Reference
The number of CNAME aliases, if any, that you want to associate with this * distribution.
*/ inline int GetQuantity() const{ return m_quantity; } /** *The number of CNAME aliases, if any, that you want to associate with this * distribution.
*/ inline bool QuantityHasBeenSet() const { return m_quantityHasBeenSet; } /** *The number of CNAME aliases, if any, that you want to associate with this * distribution.
*/ inline void SetQuantity(int value) { m_quantityHasBeenSet = true; m_quantity = value; } /** *The number of CNAME aliases, if any, that you want to associate with this * distribution.
*/ inline Aliases& WithQuantity(int value) { SetQuantity(value); return *this;} /** *A complex type that contains the CNAME aliases, if any, that you want to * associate with this distribution.
*/ inline const Aws::VectorA complex type that contains the CNAME aliases, if any, that you want to * associate with this distribution.
*/ inline bool ItemsHasBeenSet() const { return m_itemsHasBeenSet; } /** *A complex type that contains the CNAME aliases, if any, that you want to * associate with this distribution.
*/ inline void SetItems(const Aws::VectorA complex type that contains the CNAME aliases, if any, that you want to * associate with this distribution.
*/ inline void SetItems(Aws::VectorA complex type that contains the CNAME aliases, if any, that you want to * associate with this distribution.
*/ inline Aliases& WithItems(const Aws::VectorA complex type that contains the CNAME aliases, if any, that you want to * associate with this distribution.
*/ inline Aliases& WithItems(Aws::VectorA complex type that contains the CNAME aliases, if any, that you want to * associate with this distribution.
*/ inline Aliases& AddItems(const Aws::String& value) { m_itemsHasBeenSet = true; m_items.push_back(value); return *this; } /** *A complex type that contains the CNAME aliases, if any, that you want to * associate with this distribution.
*/ inline Aliases& AddItems(Aws::String&& value) { m_itemsHasBeenSet = true; m_items.push_back(std::move(value)); return *this; } /** *A complex type that contains the CNAME aliases, if any, that you want to * associate with this distribution.
*/ inline Aliases& AddItems(const char* value) { m_itemsHasBeenSet = true; m_items.push_back(value); return *this; } private: int m_quantity; bool m_quantityHasBeenSet = false; Aws::Vector