/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The total of usage for an account ID.See Also:
AWS
* API Reference
The account ID of the account that usage data was retrieved for.
*/ inline const Aws::String& GetAccountId() const{ return m_accountId; } /** *The account ID of the account that usage data was retrieved for.
*/ inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; } /** *The account ID of the account that usage data was retrieved for.
*/ inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; } /** *The account ID of the account that usage data was retrieved for.
*/ inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); } /** *The account ID of the account that usage data was retrieved for.
*/ inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); } /** *The account ID of the account that usage data was retrieved for.
*/ inline UsageTotal& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;} /** *The account ID of the account that usage data was retrieved for.
*/ inline UsageTotal& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;} /** *The account ID of the account that usage data was retrieved for.
*/ inline UsageTotal& WithAccountId(const char* value) { SetAccountId(value); return *this;} /** *An object representing the total usage for an account.
*/ inline const Aws::VectorAn object representing the total usage for an account.
*/ inline bool UsageHasBeenSet() const { return m_usageHasBeenSet; } /** *An object representing the total usage for an account.
*/ inline void SetUsage(const Aws::VectorAn object representing the total usage for an account.
*/ inline void SetUsage(Aws::VectorAn object representing the total usage for an account.
*/ inline UsageTotal& WithUsage(const Aws::VectorAn object representing the total usage for an account.
*/ inline UsageTotal& WithUsage(Aws::VectorAn object representing the total usage for an account.
*/ inline UsageTotal& AddUsage(const Usage& value) { m_usageHasBeenSet = true; m_usage.push_back(value); return *this; } /** *An object representing the total usage for an account.
*/ inline UsageTotal& AddUsage(Usage&& value) { m_usageHasBeenSet = true; m_usage.push_back(std::move(value)); return *this; } private: Aws::String m_accountId; bool m_accountIdHasBeenSet = false; Aws::Vector