/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include AWS account.See Also:
AWS API
* Reference
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