/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about a catalog item. See Also:
AWS
* API Reference
The ID of the catalog item.
*/ inline const Aws::String& GetCatalogItemId() const{ return m_catalogItemId; } /** *The ID of the catalog item.
*/ inline bool CatalogItemIdHasBeenSet() const { return m_catalogItemIdHasBeenSet; } /** *The ID of the catalog item.
*/ inline void SetCatalogItemId(const Aws::String& value) { m_catalogItemIdHasBeenSet = true; m_catalogItemId = value; } /** *The ID of the catalog item.
*/ inline void SetCatalogItemId(Aws::String&& value) { m_catalogItemIdHasBeenSet = true; m_catalogItemId = std::move(value); } /** *The ID of the catalog item.
*/ inline void SetCatalogItemId(const char* value) { m_catalogItemIdHasBeenSet = true; m_catalogItemId.assign(value); } /** *The ID of the catalog item.
*/ inline CatalogItem& WithCatalogItemId(const Aws::String& value) { SetCatalogItemId(value); return *this;} /** *The ID of the catalog item.
*/ inline CatalogItem& WithCatalogItemId(Aws::String&& value) { SetCatalogItemId(std::move(value)); return *this;} /** *The ID of the catalog item.
*/ inline CatalogItem& WithCatalogItemId(const char* value) { SetCatalogItemId(value); return *this;} /** *The status of a catalog item.
*/ inline const CatalogItemStatus& GetItemStatus() const{ return m_itemStatus; } /** *The status of a catalog item.
*/ inline bool ItemStatusHasBeenSet() const { return m_itemStatusHasBeenSet; } /** *The status of a catalog item.
*/ inline void SetItemStatus(const CatalogItemStatus& value) { m_itemStatusHasBeenSet = true; m_itemStatus = value; } /** *The status of a catalog item.
*/ inline void SetItemStatus(CatalogItemStatus&& value) { m_itemStatusHasBeenSet = true; m_itemStatus = std::move(value); } /** *The status of a catalog item.
*/ inline CatalogItem& WithItemStatus(const CatalogItemStatus& value) { SetItemStatus(value); return *this;} /** *The status of a catalog item.
*/ inline CatalogItem& WithItemStatus(CatalogItemStatus&& value) { SetItemStatus(std::move(value)); return *this;} /** *Information about the EC2 capacity of an item.
*/ inline const Aws::VectorInformation about the EC2 capacity of an item.
*/ inline bool EC2CapacitiesHasBeenSet() const { return m_eC2CapacitiesHasBeenSet; } /** *Information about the EC2 capacity of an item.
*/ inline void SetEC2Capacities(const Aws::VectorInformation about the EC2 capacity of an item.
*/ inline void SetEC2Capacities(Aws::VectorInformation about the EC2 capacity of an item.
*/ inline CatalogItem& WithEC2Capacities(const Aws::VectorInformation about the EC2 capacity of an item.
*/ inline CatalogItem& WithEC2Capacities(Aws::VectorInformation about the EC2 capacity of an item.
*/ inline CatalogItem& AddEC2Capacities(const EC2Capacity& value) { m_eC2CapacitiesHasBeenSet = true; m_eC2Capacities.push_back(value); return *this; } /** *Information about the EC2 capacity of an item.
*/ inline CatalogItem& AddEC2Capacities(EC2Capacity&& value) { m_eC2CapacitiesHasBeenSet = true; m_eC2Capacities.push_back(std::move(value)); return *this; } /** *Information about the power draw of an item.
*/ inline double GetPowerKva() const{ return m_powerKva; } /** *Information about the power draw of an item.
*/ inline bool PowerKvaHasBeenSet() const { return m_powerKvaHasBeenSet; } /** *Information about the power draw of an item.
*/ inline void SetPowerKva(double value) { m_powerKvaHasBeenSet = true; m_powerKva = value; } /** *Information about the power draw of an item.
*/ inline CatalogItem& WithPowerKva(double value) { SetPowerKva(value); return *this;} /** *The weight of the item in pounds.
*/ inline int GetWeightLbs() const{ return m_weightLbs; } /** *The weight of the item in pounds.
*/ inline bool WeightLbsHasBeenSet() const { return m_weightLbsHasBeenSet; } /** *The weight of the item in pounds.
*/ inline void SetWeightLbs(int value) { m_weightLbsHasBeenSet = true; m_weightLbs = value; } /** *The weight of the item in pounds.
*/ inline CatalogItem& WithWeightLbs(int value) { SetWeightLbs(value); return *this;} /** *The uplink speed this catalog item requires for the connection to the * Region.
*/ inline const Aws::VectorThe uplink speed this catalog item requires for the connection to the * Region.
*/ inline bool SupportedUplinkGbpsHasBeenSet() const { return m_supportedUplinkGbpsHasBeenSet; } /** *The uplink speed this catalog item requires for the connection to the * Region.
*/ inline void SetSupportedUplinkGbps(const Aws::VectorThe uplink speed this catalog item requires for the connection to the * Region.
*/ inline void SetSupportedUplinkGbps(Aws::VectorThe uplink speed this catalog item requires for the connection to the * Region.
*/ inline CatalogItem& WithSupportedUplinkGbps(const Aws::VectorThe uplink speed this catalog item requires for the connection to the * Region.
*/ inline CatalogItem& WithSupportedUplinkGbps(Aws::VectorThe uplink speed this catalog item requires for the connection to the * Region.
*/ inline CatalogItem& AddSupportedUplinkGbps(int value) { m_supportedUplinkGbpsHasBeenSet = true; m_supportedUplinkGbps.push_back(value); return *this; } /** *The supported storage options for the catalog item.
*/ inline const Aws::VectorThe supported storage options for the catalog item.
*/ inline bool SupportedStorageHasBeenSet() const { return m_supportedStorageHasBeenSet; } /** *The supported storage options for the catalog item.
*/ inline void SetSupportedStorage(const Aws::VectorThe supported storage options for the catalog item.
*/ inline void SetSupportedStorage(Aws::VectorThe supported storage options for the catalog item.
*/ inline CatalogItem& WithSupportedStorage(const Aws::VectorThe supported storage options for the catalog item.
*/ inline CatalogItem& WithSupportedStorage(Aws::VectorThe supported storage options for the catalog item.
*/ inline CatalogItem& AddSupportedStorage(const SupportedStorageEnum& value) { m_supportedStorageHasBeenSet = true; m_supportedStorage.push_back(value); return *this; } /** *The supported storage options for the catalog item.
*/ inline CatalogItem& AddSupportedStorage(SupportedStorageEnum&& value) { m_supportedStorageHasBeenSet = true; m_supportedStorage.push_back(std::move(value)); return *this; } private: Aws::String m_catalogItemId; bool m_catalogItemIdHasBeenSet = false; CatalogItemStatus m_itemStatus; bool m_itemStatusHasBeenSet = false; Aws::Vector