/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace GroundStation { namespace Model { /** *

See Also:

AWS * API Reference

*/ class GetMinuteUsageResult { public: AWS_GROUNDSTATION_API GetMinuteUsageResult(); AWS_GROUNDSTATION_API GetMinuteUsageResult(const Aws::AmazonWebServiceResult& result); AWS_GROUNDSTATION_API GetMinuteUsageResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Estimated number of minutes remaining for an account, specific to the month * being requested.

*/ inline int GetEstimatedMinutesRemaining() const{ return m_estimatedMinutesRemaining; } /** *

Estimated number of minutes remaining for an account, specific to the month * being requested.

*/ inline void SetEstimatedMinutesRemaining(int value) { m_estimatedMinutesRemaining = value; } /** *

Estimated number of minutes remaining for an account, specific to the month * being requested.

*/ inline GetMinuteUsageResult& WithEstimatedMinutesRemaining(int value) { SetEstimatedMinutesRemaining(value); return *this;} /** *

Returns whether or not an account has signed up for the reserved minutes * pricing plan, specific to the month being requested.

*/ inline bool GetIsReservedMinutesCustomer() const{ return m_isReservedMinutesCustomer; } /** *

Returns whether or not an account has signed up for the reserved minutes * pricing plan, specific to the month being requested.

*/ inline void SetIsReservedMinutesCustomer(bool value) { m_isReservedMinutesCustomer = value; } /** *

Returns whether or not an account has signed up for the reserved minutes * pricing plan, specific to the month being requested.

*/ inline GetMinuteUsageResult& WithIsReservedMinutesCustomer(bool value) { SetIsReservedMinutesCustomer(value); return *this;} /** *

Total number of reserved minutes allocated, specific to the month being * requested.

*/ inline int GetTotalReservedMinuteAllocation() const{ return m_totalReservedMinuteAllocation; } /** *

Total number of reserved minutes allocated, specific to the month being * requested.

*/ inline void SetTotalReservedMinuteAllocation(int value) { m_totalReservedMinuteAllocation = value; } /** *

Total number of reserved minutes allocated, specific to the month being * requested.

*/ inline GetMinuteUsageResult& WithTotalReservedMinuteAllocation(int value) { SetTotalReservedMinuteAllocation(value); return *this;} /** *

Total scheduled minutes for an account, specific to the month being * requested.

*/ inline int GetTotalScheduledMinutes() const{ return m_totalScheduledMinutes; } /** *

Total scheduled minutes for an account, specific to the month being * requested.

*/ inline void SetTotalScheduledMinutes(int value) { m_totalScheduledMinutes = value; } /** *

Total scheduled minutes for an account, specific to the month being * requested.

*/ inline GetMinuteUsageResult& WithTotalScheduledMinutes(int value) { SetTotalScheduledMinutes(value); return *this;} /** *

Upcoming minutes scheduled for an account, specific to the month being * requested.

*/ inline int GetUpcomingMinutesScheduled() const{ return m_upcomingMinutesScheduled; } /** *

Upcoming minutes scheduled for an account, specific to the month being * requested.

*/ inline void SetUpcomingMinutesScheduled(int value) { m_upcomingMinutesScheduled = value; } /** *

Upcoming minutes scheduled for an account, specific to the month being * requested.

*/ inline GetMinuteUsageResult& WithUpcomingMinutesScheduled(int value) { SetUpcomingMinutesScheduled(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetMinuteUsageResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetMinuteUsageResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetMinuteUsageResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: int m_estimatedMinutesRemaining; bool m_isReservedMinutesCustomer; int m_totalReservedMinuteAllocation; int m_totalScheduledMinutes; int m_upcomingMinutesScheduled; Aws::String m_requestId; }; } // namespace Model } // namespace GroundStation } // namespace Aws