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

AWS account.

See Also:

AWS API * Reference

*/ class Account { public: AWS_DRS_API Account(); AWS_DRS_API Account(Aws::Utils::Json::JsonView jsonValue); AWS_DRS_API Account& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_DRS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Account ID of AWS account.

*/ inline const Aws::String& GetAccountID() const{ return m_accountID; } /** *

Account ID of AWS account.

*/ inline bool AccountIDHasBeenSet() const { return m_accountIDHasBeenSet; } /** *

Account ID of AWS account.

*/ inline void SetAccountID(const Aws::String& value) { m_accountIDHasBeenSet = true; m_accountID = value; } /** *

Account ID of AWS account.

*/ inline void SetAccountID(Aws::String&& value) { m_accountIDHasBeenSet = true; m_accountID = std::move(value); } /** *

Account ID of AWS account.

*/ inline void SetAccountID(const char* value) { m_accountIDHasBeenSet = true; m_accountID.assign(value); } /** *

Account ID of AWS account.

*/ inline Account& WithAccountID(const Aws::String& value) { SetAccountID(value); return *this;} /** *

Account ID of AWS account.

*/ inline Account& WithAccountID(Aws::String&& value) { SetAccountID(std::move(value)); return *this;} /** *

Account ID of AWS account.

*/ inline Account& WithAccountID(const char* value) { SetAccountID(value); return *this;} private: Aws::String m_accountID; bool m_accountIDHasBeenSet = false; }; } // namespace Model } // namespace drs } // namespace Aws