/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the monthly data transfer in and out of your virtual private server
* (or instance).See Also:
AWS
* API Reference
The amount allocated per month (in GB).
*/ inline int GetGbPerMonthAllocated() const{ return m_gbPerMonthAllocated; } /** *The amount allocated per month (in GB).
*/ inline bool GbPerMonthAllocatedHasBeenSet() const { return m_gbPerMonthAllocatedHasBeenSet; } /** *The amount allocated per month (in GB).
*/ inline void SetGbPerMonthAllocated(int value) { m_gbPerMonthAllocatedHasBeenSet = true; m_gbPerMonthAllocated = value; } /** *The amount allocated per month (in GB).
*/ inline MonthlyTransfer& WithGbPerMonthAllocated(int value) { SetGbPerMonthAllocated(value); return *this;} private: int m_gbPerMonthAllocated; bool m_gbPerMonthAllocatedHasBeenSet = false; }; } // namespace Model } // namespace Lightsail } // namespace Aws